From 0b9530245a33b8206ca38b9de6dfb01e056fd8dc Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 25 Aug 2007 01:57:54 +0000 Subject: [PATCH] Add "Support SMP" and "RTS ways" to the compiler --info output --- compiler/Makefile | 2 ++ compiler/main/DynFlags.hs | 2 ++ 2 files changed, 4 insertions(+) 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)] -- 1.7.10.4