X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Fbootstrap.mk;h=af84565457bcb2f74479c2777315569df6e54af0;hb=22376c08b59b2bfbf87226d5395bba8abfa57748;hp=55fd6d1253f79bda04eeb74c243c71d033dffbf4;hpb=b8a3d34e3c254a883556e35d1d3e3e60bf280a2a;p=ghc-hetmet.git diff --git a/mk/bootstrap.mk b/mk/bootstrap.mk index 55fd6d1..af84565 100644 --- a/mk/bootstrap.mk +++ b/mk/bootstrap.mk @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: bootstrap.mk,v 1.26 2003/07/24 13:40:05 simonmar Exp $ +# $Id: bootstrap.mk,v 1.33 2005/01/27 13:00:14 simonmar Exp $ # # Makefile rules for booting from .hc files without a driver. # @@ -17,6 +17,8 @@ include $(TOP)/mk/paths.mk # Reset TOP TOP:=$(TOP_SAVED) +include $(TOP)/mk/suffix.mk + # ----------------------------------------------------------------------------- # Set the platform-specific options to send to the C compiler. These should # match the list in machdepCCOpts in ghc/compiler/DriverFlags.hs. @@ -59,16 +61,23 @@ endif ifeq "$(BootingFromUnregisterisedHc)" "YES" PLATFORM_HC_BOOT_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER -SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER -# Add these flags to SRC_CC_OPTS too, because they need to be passed to the plain .c -# files in ghc/rts. endif PLATFORM_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt) HC_BOOT_CC_OPTS = $(PLATFORM_HC_BOOT_CC_OPTS) $(PLATFORM_CC_OPTS) $(CC_OPTS) -SRC_CC_OPTS += -I$(FPTOOLS_TOP_ABS)/ghc/includes -I$(FPTOOLS_TOP_ABS)/libraries/base/include -I$(FPTOOLS_TOP_ABS)/libraries/unix/include +SRC_CC_OPTS += -I$(FPTOOLS_TOP_ABS)/ghc/includes -I$(FPTOOLS_TOP_ABS)/libraries/base/include -I$(FPTOOLS_TOP_ABS)/libraries/unix/include -I$(FPTOOLS_TOP_ABS)/libraries/parsec/include + +# C code compiled with UseGhcForCc=YES assumes the existence of certain CPP +# symbols defined by GHC (eg. __GLASGOW_HASKELL__), so we better make sure +# they're defined. We can't test $(UseGhcForCc) here though - it isn't defined +# yet, so we use lazy expansion. +SRC_CC_OPTS += $(if $(findstring YES,$(UseGhcForCc)), $(PLATFORM_HC_BOOT_CC_OPTS) $(PLATFORM_CC_OPTS)) + +ifeq "$(GhcWithInterpreter)" "YES" +SRC_CC_OPTS += -I$(FPTOOLS_TOP_ABS)/libraries/readline/include +endif # ----------------------------------------------------------------------------- # Linking: we have to give all the libraries explicitly. @@ -88,7 +97,19 @@ HC_BOOT_LD_OPTS = \ $(DASH_L_GHC_RTS_GMP_DIR) \ -L$(FPTOOLS_TOP_ABS)/libraries/base \ -L$(FPTOOLS_TOP_ABS)/libraries/base/cbits \ - -L$(FPTOOLS_TOP_ABS)/libraries/haskell98 \ + -L$(FPTOOLS_TOP_ABS)/libraries/haskell98 + +ifeq "$(GhcWithInterpreter)" "YES" +HC_BOOT_LD_OPTS += \ + -L$(FPTOOLS_TOP_ABS)/libraries/template-haskell \ + -L$(FPTOOLS_TOP_ABS)/libraries/readline \ + -L$(FPTOOLS_TOP_ABS)/libraries/parsec \ + -L$(FPTOOLS_TOP_ABS)/libraries/Cabal \ + -L$(FPTOOLS_TOP_ABS)/libraries/unix \ + -L$(FPTOOLS_TOP_ABS)/libraries/unix/cbits +endif + +HC_BOOT_LD_OPTS += \ -u "$(UNDERSCORE)GHCziBase_Izh_static_info" \ -u "$(UNDERSCORE)GHCziBase_Czh_static_info" \ -u "$(UNDERSCORE)GHCziFloat_Fzh_static_info" \ @@ -121,7 +142,14 @@ HC_BOOT_LD_OPTS = \ -u "$(UNDERSCORE)GHCziWeak_runFinalizzerBatch_closure" \ -u "$(UNDERSCORE)__stginit_Prelude" -HC_BOOT_LIBS = -lHShaskell98 -lHSbase -lHSbase_cbits -lHSrts -lgmp -lm $(EXTRA_HC_BOOT_LIBS) + +HC_BOOT_LIBS = + +ifeq "$(GhcWithInterpreter)" "YES" +HC_BOOT_LIBS += -lHSreadline -lHStemplate-haskell -lHSunix -lHSunix_cbits +endif + +HC_BOOT_LIBS += -lHSCabal -lHShaskell98 -lHSbase -lHSbase_cbits -lHSparsec -lHSrts -lgmp -lm $(EXTRA_HC_BOOT_LIBS) ifeq "$(GhcLibsWithReadline)" "YES" HC_BOOT_LIBS += $(patsubst %, -l%, $(LibsReadline))