From: Ian Lynagh Date: Sat, 25 Aug 2007 01:57:54 +0000 (+0000) Subject: Add "Support SMP" and "RTS ways" to the compiler --info output X-Git-Tag: Before_type_family_merge~8 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=0b9530245a33b8206ca38b9de6dfb01e056fd8dc Add "Support SMP" and "RTS ways" to the compiler --info output --- diff --git a/compiler/Makefile b/compiler/Makefile index b7e9986..50c16f4 100644 --- a/compiler/Makefile +++ b/compiler/Makefile @@ -229,6 +229,8 @@ $(CONFIG_HS) : $(FPTOOLS_TOP)/mk/config.mk @echo "cSplitObjs = \"$(SplitObjs)\"" >> $(CONFIG_HS) @echo "cGhcWithInterpreter = \"$(GhcWithInterpreter)\"" >> $(CONFIG_HS) @echo "cGhcWithNativeCodeGen = \"$(GhcWithNativeCodeGen)\"" >> $(CONFIG_HS) + @echo "cGhcWithSMP = \"$(GhcWithSMP)\"" >> $(CONFIG_HS) + @echo "cGhcRTSWays = \"$(GhcRTSWays)\"" >> $(CONFIG_HS) @echo "cGhcUnregisterised = \"$(GhcUnregisterised)\"" >> $(CONFIG_HS) @echo "cGhcEnableTablesNextToCode = \"$(GhcEnableTablesNextToCode)\"" >> $(CONFIG_HS) @echo "cLeadingUnderscore = \"$(LeadingUnderscore)\"" >> $(CONFIG_HS) diff --git a/compiler/main/DynFlags.hs b/compiler/main/DynFlags.hs index 2218f17..8297067 100644 --- a/compiler/main/DynFlags.hs +++ b/compiler/main/DynFlags.hs @@ -1685,8 +1685,10 @@ compilerInfo = [("Project name", cProjectName), ("Have interpreter", cGhcWithInterpreter), ("Object splitting", cSplitObjs), ("Have native code generator", cGhcWithNativeCodeGen), + ("Support SMP", cGhcWithSMP), ("Unregisterised", cGhcUnregisterised), ("Tables next to code", cGhcEnableTablesNextToCode), ("Win32 DLLs", cEnableWin32DLLs), + ("RTS ways", cGhcRTSWays), ("Leading underscore", cLeadingUnderscore)]