X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=mk%2Fbootstrap.mk;h=af84565457bcb2f74479c2777315569df6e54af0;hb=a7f4060e7cbddc5ca54105c17eb756628e0cade2;hp=7e7e44eb98090bebed2dc630fdfcb289c9df38c1;hpb=50027272414438955dbc41696541cbd25da55883;p=ghc-hetmet.git diff --git a/mk/bootstrap.mk b/mk/bootstrap.mk index 7e7e44e..af84565 100644 --- a/mk/bootstrap.mk +++ b/mk/bootstrap.mk @@ -1,18 +1,24 @@ # ----------------------------------------------------------------------------- -# $Id: bootstrap.mk,v 1.1 2001/03/23 16:36:23 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. # +# When booting from .hc files without a compiler installed, we don't have +# the benefit of the GHC driver to add all the magic options required to +# compile the .hc files, so we have to duplicate that functionality here. +# The result is unfortunately ugly, but we don't have another choice. TOP_SAVED := $(TOP) TOP:=$(TOP)/ghc -include $(FPTOOLS_TOP_ABS)/ghc/mk/version.mk -include $(FPTOOLS_TOP_ABS)/ghc/mk/paths.mk +include $(TOP)/mk/version.mk +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. @@ -24,8 +30,6 @@ PLATFORM_HC_BOOT_CC_OPTS = ifeq "$(i386_TARGET_ARCH)" "1" PLATFORM_CC_OPTS += -DDONT_WANT_WIN32_DLL_SUPPORT PLATFORM_HC_BOOT_CC_OPTS += -fno-defer-pop -fomit-frame-pointer -# ToDo: -STOLEN_X86_REGS = 4 endif ifeq "$(hppa_TARGET_ARCH)" "1" @@ -39,26 +43,118 @@ endif ifeq "$(rs6000_TARGET_ARCH)" "1" PLATFORM_CC_OPTS += -static -PLATFORM_HC_BOOT_CC_OPTS += -static -finhibit-size-directive +PLATFORM_HC_BOOT_CC_OPTS += -finhibit-size-directive endif ifeq "$(mingw32_TARGET_OS)" "1" PLATFORM_CC_OPTS += -mno-cygwin endif +ifeq "$(alpha_TARGET_ARCH)" "1" +PLATFORM_CC_OPTS += -static -w +PLATFORM_HC_BOOT_CC_OPTS += -mieee +endif + +ifeq "$(sparc_TARGET_ARCH)" "1" +PLATFORM_HC_BOOT_CC_OPTS += -w +endif + +ifeq "$(BootingFromUnregisterisedHc)" "YES" +PLATFORM_HC_BOOT_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER +endif + PLATFORM_CC_OPTS += -D__GLASGOW_HASKELL__=$(ProjectVersionInt) -HC_BOOT_CC_OPTS = $(PLATFORM_HC_BOOT_CC_OPTS) +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 -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 # ----------------------------------------------------------------------------- -# suffix rules for building a .o from a .hc file. The normal build system -# should be able to take care of the rest. +# Linking: we have to give all the libraries explicitly. + +ifeq "$(LeadingUnderscore)" "YES" +UNDERSCORE=_ +else +UNDERSCORE= +endif -%.raw_s : %.hc - $(CC) -x c $< -o $@ -S -O $(HC_BOOT_CC_OPTS) -I. -I$(FPTOOLS_TOP_ABS)/ghc/includes -I$(FPTOOLS_TOP_ABS)/ghc/lib/std/cbits +ifeq "$(HaveLibGmp)" "NO" +DASH_L_GHC_RTS_GMP_DIR=-L$(FPTOOLS_TOP_ABS)/ghc/rts/gmp +endif -%.s : %.raw_s - $(GHC_MANGLER) $< $@ $(STOLEN_X86_REGS) +HC_BOOT_LD_OPTS = \ + -L$(FPTOOLS_TOP_ABS)/ghc/rts \ + $(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 + +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 -%.o : %.s - $(CC) -c -o $@ $< +HC_BOOT_LD_OPTS += \ + -u "$(UNDERSCORE)GHCziBase_Izh_static_info" \ + -u "$(UNDERSCORE)GHCziBase_Czh_static_info" \ + -u "$(UNDERSCORE)GHCziFloat_Fzh_static_info" \ + -u "$(UNDERSCORE)GHCziFloat_Dzh_static_info" \ + -u "$(UNDERSCORE)GHCziPtr_Ptr_static_info" \ + -u "$(UNDERSCORE)GHCziWord_Wzh_static_info" \ + -u "$(UNDERSCORE)GHCziInt_I8zh_static_info" \ + -u "$(UNDERSCORE)GHCziInt_I16zh_static_info" \ + -u "$(UNDERSCORE)GHCziInt_I32zh_static_info" \ + -u "$(UNDERSCORE)GHCziInt_I64zh_static_info" \ + -u "$(UNDERSCORE)GHCziWord_W8zh_static_info" \ + -u "$(UNDERSCORE)GHCziWord_W16zh_static_info" \ + -u "$(UNDERSCORE)GHCziWord_W32zh_static_info" \ + -u "$(UNDERSCORE)GHCziWord_W64zh_static_info" \ + -u "$(UNDERSCORE)GHCziStable_StablePtr_static_info" \ + -u "$(UNDERSCORE)GHCziBase_Izh_con_info" \ + -u "$(UNDERSCORE)GHCziBase_Czh_con_info" \ + -u "$(UNDERSCORE)GHCziFloat_Fzh_con_info" \ + -u "$(UNDERSCORE)GHCziFloat_Dzh_con_info" \ + -u "$(UNDERSCORE)GHCziPtr_Ptr_con_info" \ + -u "$(UNDERSCORE)GHCziStable_StablePtr_con_info" \ + -u "$(UNDERSCORE)GHCziBase_False_closure" \ + -u "$(UNDERSCORE)GHCziBase_True_closure" \ + -u "$(UNDERSCORE)GHCziPack_unpackCString_closure" \ + -u "$(UNDERSCORE)GHCziIOBase_stackOverflow_closure" \ + -u "$(UNDERSCORE)GHCziIOBase_heapOverflow_closure" \ + -u "$(UNDERSCORE)GHCziIOBase_NonTermination_closure" \ + -u "$(UNDERSCORE)GHCziIOBase_BlockedOnDeadMVar_closure" \ + -u "$(UNDERSCORE)GHCziIOBase_Deadlock_closure" \ + -u "$(UNDERSCORE)GHCziWeak_runFinalizzerBatch_closure" \ + -u "$(UNDERSCORE)__stginit_Prelude" + + +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)) +endif + +ifeq "$(HaveLibDL)" "YES" +HC_BOOT_LIBS += -ldl +endif