Massive patch for the first months work adding System FC to GHC #36
[ghc-hetmet.git] / mk / config.mk.in
index 774d637..806908b 100644 (file)
@@ -55,6 +55,7 @@ endif
 # change between versions.  Rationale: calling conventions or other 
 # random .o-file stuff might change even if the .hi syntax doesn't
 
+ProjectName       = @ProjectName@
 ProjectVersion    = @ProjectVersion@
 ProjectVersionInt = @ProjectVersionInt@
 ProjectPatchLevel = @ProjectPatchLevel@
@@ -256,6 +257,14 @@ GhcWithJavaGen=NO
 
 HaveLibDL = @HaveLibDL@
 
+ArchSupportsSMP=$(strip $(patsubst $(HostArch_CPP), YES, $(findstring $(HostArch_CPP), i386 x86_64 sparc)))
+
+ifeq "$(ArchSupportsSMP)$(GhcUnregisterised)" "YESNO"
+GhcWithSMP=YES
+else
+GhcWithSMP=NO
+endif
+
 # Whether to include GHCi in the compiler.  Depends on whether the RTS linker
 # has support for this OS/ARCH combination.
 
@@ -376,18 +385,6 @@ ifeq "$(TargetArch_CPP)" "ia64"
 SplitObjs=NO
 endif
 
-# Build the Haskell Readline bindings?
-#
-GhcLibsWithReadline=@GhcLibsWithReadline@
-
-# Libraries needed for linking with readline
-LibsReadline=@LibsReadline@
-
-# Include path to readline.h
-# (no path == in standard include path)
-#
-ReadlineIncludePath=
-
 # Math library
 LIBM=@LIBM@
 
@@ -464,10 +461,10 @@ NoFibRuns = 5
 
 DEFAULT_TMPDIR         = /tmp
 ifeq "$(TARGETPLATFORM)" "i386-unknown-cygwin32"
-DEFAULT_TMPDIR         = C:/TEMP
+DEFAULT_TMPDIR         = /C/TEMP
 endif
 ifeq "$(TARGETPLATFORM)" "i386-unknown-mingw32"
-DEFAULT_TMPDIR         = C:/TEMP
+DEFAULT_TMPDIR         = /C/TEMP
 endif
 
 # FPTOOLS_TOP: the top of the fptools hierarchy, absolute path. (POSIX / unix-style path).
@@ -492,7 +489,7 @@ mandir                      = @mandir@
 ifeq "$(Windows)" "YES"
 
 ifeq "$(strip $(prefix))" ""
-prefix         = c:/ghc
+prefix         = /c/ghc
 endif
 
 # Hack: our directory layouts tend to be different on Windows, so
@@ -758,36 +755,13 @@ RUNTEST                   = $(GHC_RUNTEST_DIR)/$(GHC_RUNTEST_PGM)
 
 GHC            = @WithGhc@
 GhcDir          = $(dir $(GHC))
-GhcVersion     = @GhcVersion@
-GhcMajVersion  = @GhcMajVersion@
-GhcMinVersion  = @GhcMinVersion@
-GhcPatchLevel  = @GhcPatchLevel@
 
 # Set to YES if $(GHC) has the readline package installed
 GhcHasReadline = @GhcHasReadline@
 
-# Canonicalised ghc version number, used for easy (integer) version
-# comparisons.  We must expand $(GhcMinVersion) to two digits by
-# adding a leading zero if necessary:
-ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
-GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
-else
-GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
-endif
-
 HBC            = @HBC@
 NHC            = @NHC@
 
-# Setting UseStage1=YES forces use of the stage1 compiler to compile
-# Haskell code, rather than the installed compiler.
-ifeq "$(UseStage1)" "YES"
-HC             =$(GHC_STAGE1)
-MKDEPENDHS     =$(GHC_STAGE1)
-else
-HC             = @WithHc@
-MKDEPENDHS     = $(GHC)
-endif
-
 # Sometimes we want to invoke ghc from the build tree in different
 # places (eg. it's handy to have a nofib & a ghc build in the same
 # tree).  We can refer to "this ghc" as $(GHC_INPLACE):
@@ -797,25 +771,48 @@ GHC_STAGE1        = $(GHC_COMPILER_DIR)/stage1/ghc-inplace
 GHC_STAGE2     = $(GHC_COMPILER_DIR)/stage2/ghc-inplace
 GHC_STAGE3     = $(GHC_COMPILER_DIR)/stage3/ghc-inplace
 
-# Some useful GHC version predicates:
+ifneq "$(findstring YES, $(UseStage1) $(BootingFromHc))" ""
+
+# We are using the stage1 compiler to compile Haskell code, set up
+# some variables appropriately:
+HC             =$(GHC_STAGE1)
+MKDEPENDHS     =$(GHC_STAGE1)
+GhcVersion     = @ProjectVersion@
+GhcPatchLevel  = @ProjectPatchLevel@
+# oops, these are wrong:
+GhcMajVersion  = @GhcMajVersion@
+GhcMinVersion  = @GhcMinVersion@
 
-ifeq "$(UseStage1)" "YES"
-ghc_ge_504 = YES
-ghc_ge_601 = YES
-ghc_ge_602 = YES
-ghc_ge_603 = YES
-else
-ifeq "$(BootingFromHc)" "YES"
 ghc_ge_504 = YES
 ghc_ge_601 = YES
 ghc_ge_602 = YES
 ghc_ge_603 = YES
-else
+ghc_ge_605 = YES
+
+else # not UseStage1 or BootingFromHc
+
+HC             = @WithHc@
+MKDEPENDHS     = $(GHC)
+GhcVersion     = @GhcVersion@
+GhcPatchLevel  = @GhcPatchLevel@
+GhcMajVersion  = @GhcMajVersion@
+GhcMinVersion  = @GhcMinVersion@
+
+# Some useful GHC version predicates:
 ghc_ge_504 = $(shell if (test $(GhcCanonVersion) -ge 504); then echo YES; else echo NO; fi)
 ghc_ge_601 = $(shell if (test $(GhcCanonVersion) -ge 601); then echo YES; else echo NO; fi)
 ghc_ge_602 = $(shell if (test $(GhcCanonVersion) -ge 602); then echo YES; else echo NO; fi)
 ghc_ge_603 = $(shell if (test $(GhcCanonVersion) -ge 603); then echo YES; else echo NO; fi)
+ghc_ge_605 = $(shell if (test $(GhcCanonVersion) -ge 605); then echo YES; else echo NO; fi)
 endif
+
+# Canonicalised ghc version number, used for easy (integer) version
+# comparisons.  We must expand $(GhcMinVersion) to two digits by
+# adding a leading zero if necessary:
+ifneq "$(findstring $(GhcMinVersion), 0 1 2 3 4 5 6 7 8 9)" ""
+GhcCanonVersion = $(GhcMajVersion)0$(GhcMinVersion)
+else
+GhcCanonVersion = $(GhcMajVersion)$(GhcMinVersion)
 endif
 
 #-----------------------------------------------------------------------------