X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Fconfig.mk.in;h=0a4daeefa61bd0a97f21f8cf2ca4e65ccd288f49;hb=8fe6e82666acfdd73c064762c2faf36b52e3af26;hp=d0e0ce11b86c63c0c7b4830c3e44182a171a1eb9;hpb=15d621f7a93242d26d40bafb7ef000cf38f49285;p=ghc-hetmet.git diff --git a/mk/config.mk.in b/mk/config.mk.in index d0e0ce1..0a4daee 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -121,16 +121,6 @@ ProjectsToInstall = glafp-utils ghc # IncludeTestDirsInBuild=NO -# -# Name variables for the main project -# -Project = Ghc -ProjectName = $($(Project)ProjectName) -ProjectNameShort = $($(Project)ProjectNameShort) -ProjectVersion = $($(Project)ProjectVersion) -ProjectVersionInt = $($(Project)ProjectVersionInt) -ProjectPatchLevel = $($(Project)ProjectPatchLevel) - ################################################################################# # # GHC project @@ -140,21 +130,11 @@ ProjectPatchLevel = $($(Project)ProjectPatchLevel) # ################################################################################# -# -# Name variables for ghc: -# -# *ProjectVersion is treated as a *string* -# *ProjectVersionInt is treated as an *integer* (for cpp defines) - -GhcProjectName = The Glorious Glasgow Haskell Compilation System -GhcProjectNameShort = ghc -GhcProjectVersion = 3.02 -GhcProjectVersionInt = 302 -GhcProjectPatchLevel = 0 - #--------------------------------------------------------------- # # Variables that control how the compiler itself is built +# +#--------------------------------------------------------------- # Specify the Haskell compiler to be used to compile the compiler itself # @@ -169,9 +149,6 @@ GhcProjectPatchLevel = 0 WithGhcHc = ghc-2.10 -# Unused, we think -# WithGhcHcType=HC_GLASGOW_GHC - # Extra ways in which to build the compiler (for example, you might want to # build a profiled compiler so you can see where it spends its time) GhcCompilerWays= @@ -228,7 +205,12 @@ BuildingProfilingConcurrent=$(subst mr,YES,$(filter mr,$(WAYS))) # What extra ways to build the libraries in # In addition to the normal sequential way, the default is to also build # profiled prelude libraries. +# When booting from .hc files, turn this off. +ifeq "$(GhcWithHscBuiltViaC)" "YES" +GhcLibWays= +else GhcLibWays=p +endif # Option flags to pass to GHC when it's compiling prelude modules # Typically these are things like -O or -dcore-lint @@ -237,25 +219,11 @@ GhcLibWays=p # -O is pretty desirable, otherwise no inlining of prelude # things (incl "+") happens when compiling with this compiler -# -# Splitting profiled code produces awfully large archives under ELF, so -# we turn it off here. -# -# ToDo: track down the source of this. -# -ifeq "$(strip $(way))" "p" -GhcLibHcOpts= -O -else -ifeq "$(strip $(way))" "mr" -GhcLibHcOpts= -O -else ifeq "$(GhcWithHscBuiltViaC)" "YES" GhcLibHcOpts=-O else GhcLibHcOpts=-O -split-objs -odir $* endif -endif -endif # Build the Haskell Readline bindings? # @@ -270,14 +238,15 @@ ReadlineIncludePath= # GhcLibsWithSockets=YES -# what to include in a binary distribution +# Strip local symbols from libraries? This can make the libraries smaller, +# but makes debugging somewhat more difficult. Doesn't work with all ld's. +# +StripLibraries=NO -GhcMainDir = ghc -GhcBinDistDirs = ghc -GhcBinDistDocs = docs ghc/docs/users_guide ghc/docs/libraries -GhcBinDistPrlScripts = ghc-$(GhcProjectVersion) stat2resid hstags mkdependHS -GhcBinDistLibPrlScripts = hscpp -GhcBinDistBins = hp2ps +# Include compiler support for letting the compiler (optionally) report +# your compilation to a central server for generation of fun stats. +# +GhcReportCompiles=YES ################################################################################# # @@ -287,15 +256,6 @@ GhcBinDistBins = hp2ps # ################################################################################# -# -# Name variables for happy: -# -HappyProjectName = Happy -HappyProjectNameShort = happy -HappyProjectVersion = 1.5 -HappyProjectVersionInt = 15 -HappyProjectPatchLevel = 0 - # The compiler you'd like to use to compile Happy WithHappyHc = $(WithGhcHc) @@ -304,13 +264,6 @@ WithHappyHc = $(WithGhcHc) # HappyHcOpts = -# what to include in a binary distribution - -HappyMainDir = happy -HappyBinDistDirs = happy -HappyBinDistDocs = happy/doc -HappyBinDistShScripts = happy - ################################################################################# # # haggis project @@ -350,10 +303,10 @@ NoFibSubDirs = imaginary spectral real # The different ways to build nofib. Default is just to mirror # what is done for the ghc prelude libraries. # -NoFibWays=$(GhcLibWays) +NoFibWays = $(GhcLibWays) # Haskell compiler options for nofib -NoFibHcOpts= +NoFibHcOpts = -O # ============================================================================== # @@ -523,7 +476,7 @@ MKDEPENDHS = $(HC) # HaveGcc = @HaveGcc@ UseGcc = YES -WhatGccIsCalled = gcc +WhatGccIsCalled = @WhatGccIsCalled@ ifeq "$(strip $(HaveGcc))" "YES" ifneq "$(strip $(UseGcc))" "YES" CC = cc @@ -536,12 +489,15 @@ endif # GMP Library # HaveLibGmp = @HaveLibGmp@ +LibGmp = @LibGmp@ #----------------------------------------------------------------------------- # Flex FLEX = @LEX@ -FLEX_LIB = @LEXLIB@ +# Don't bother with -lfl, we define our own yywrap()s anyway. +FLEX_LIB = +#WAS:FLEX_LIB = @LEXLIB@ #----------------------------------------------------------------------------- # Other standard (ha!) Unix utilities @@ -607,6 +563,7 @@ REAL_SHELL=$(SHELL) SIZE = size STRIP = strip TAR = @TarCmd@ +ZIP = zip # # Under cygwin32, we have to deal with .exe suffixes