From: simonmar Date: Thu, 24 Jul 2003 11:03:07 +0000 (+0000) Subject: [project @ 2003-07-24 11:03:07 by simonmar] X-Git-Tag: Approx_11550_changesets_converted~639 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=8e57a9c2bc401b55ed154c587d0bedae58be001b [project @ 2003-07-24 11:03:07 by simonmar] - Move suffix rules from bootstrap.mk to suffix.mk - Make the bootstrap suffix rules $(odir)-aware, so they work for the compiler --- diff --git a/mk/bootstrap.mk b/mk/bootstrap.mk index c9ed5ec..e60a21c 100644 --- a/mk/bootstrap.mk +++ b/mk/bootstrap.mk @@ -1,5 +1,5 @@ # ----------------------------------------------------------------------------- -# $Id: bootstrap.mk,v 1.23 2003/07/24 10:38:33 simonmar Exp $ +# $Id: bootstrap.mk,v 1.24 2003/07/24 11:03:07 simonmar Exp $ # # Makefile rules for booting from .hc files without a driver. # @@ -127,28 +127,3 @@ endif ifeq "$(HaveLibDL)" "YES" HC_BOOT_LIBS += -ldl endif - -# ----------------------------------------------------------------------------- -# suffix rules for building a .o from a .hc file. - -ifeq "$(BootingFromUnregisterisedHc)" "YES" - -# without mangling - -%.o : %.hc - $(CC) -x c $< -o $@ -c -O $(HC_BOOT_CC_OPTS) -I. `echo $(patsubst -monly-%-regs, -DSTOLEN_X86_REGS=%, $(filter -monly-%-regs, $($*_HC_OPTS))) | sed 's/^$$/-DSTOLEN_X86_REGS=4/'` - -else - -# with mangling - -%.raw_s : %.hc - $(CC) -x c $< -o $@ -S -O $(HC_BOOT_CC_OPTS) -I. `echo $(patsubst -monly-%-regs, -DSTOLEN_X86_REGS=%, $(filter -monly-%-regs, $($*_HC_OPTS))) | sed 's/^$$/-DSTOLEN_X86_REGS=4/'` - -%.s : %.raw_s - $(GHC_MANGLER) $< $@ $(patsubst -monly-%-regs, %, $(filter -monly-%-regs, $($*_HC_OPTS))) - -%.o : %.s - $(CC) -c -o $@ $< - -endif diff --git a/mk/suffix.mk b/mk/suffix.mk index 69d164e..b3bc8fc 100644 --- a/mk/suffix.mk +++ b/mk/suffix.mk @@ -25,11 +25,6 @@ #----------------------------------------------------------------------------- # Haskell Suffix Rules -# Turn off all the Haskell suffix rules if we're booting from .hc -# files. The file bootstrap.mk contains alternative suffix rules in -# this case. -ifneq "$(BootingFromHc)" "YES" - # The $(odir) support is for building GHC, where we need to build three # different versions from the same sources. See ghc/compiler/Makefile. ifneq "$(odir)" "" @@ -38,6 +33,11 @@ else odir_ = endif +# Turn off all the Haskell suffix rules if we're booting from .hc +# files. The file bootstrap.mk contains alternative suffix rules in +# this case. +ifneq "$(BootingFromHc)" "YES" + $(odir_)%.$(way_)o : %.hs $(HC_PRE_OPTS) $(HC) $(HC_OPTS) -c $< -o $@ -ohi $(basename $@).$(way_)hi @@ -56,12 +56,12 @@ $(odir_)%.$(way_)hc : %.hs $(RM) $@ $(HC) $(HC_OPTS) -C $< -o $@ -$(odir_)%.$(way_)o : %.$(way_)hc +$(odir_)%.$(way_)o : %.$(way_)hc $(HC_PRE_OPTS) $(HC) $(HC_OPTS) -c $< -o $@ $(HC_POST_OPTS) -$(odir_)%.$(way_)o : %.hc +$(odir_)%.$(way_)o : %.hc $(HC_PRE_OPTS) $(HC) $(HC_OPTS) -c $< -o $@ $(HC_POST_OPTS) @@ -99,7 +99,34 @@ $(odir_)%.$(way_)hi : %.$(way_)hc else exit 0 ; \ fi -endif # BootingViaC +else # BootingFromHc + +# ----------------------------------------------------------------------------- +# suffix rules for building a .o from a .hc file in bootstrap mode. + +ifeq "$(BootingFromUnregisterisedHc)" "YES" + +# without mangling + +$(odir_)%.o : %.hc + $(CC) -x c $< -o $@ -c -O $(HC_BOOT_CC_OPTS) -I. `echo $(patsubst -monly-%-regs, -DSTOLEN_X86_REGS=%, $(filter -monly-%-regs, $($*_HC_OPTS))) | sed 's/^$$/-DSTOLEN_X86_REGS=4/'` + +else + +# with mangling + +$(odir_)%.raw_s : %.hc + $(CC) -x c $< -o $@ -S -O $(HC_BOOT_CC_OPTS) -I. `echo $(patsubst -monly-%-regs, -DSTOLEN_X86_REGS=%, $(filter -monly-%-regs, $($*_HC_OPTS))) | sed 's/^$$/-DSTOLEN_X86_REGS=4/'` + +$(odir_)%.s : %.raw_s + $(GHC_MANGLER) $< $@ $(patsubst -monly-%-regs, %, $(filter -monly-%-regs, $($*_HC_OPTS))) + +$(odir_)%.o : %.s + $(CC) -c -o $@ $< + +endif # not BootingFromUnregisterisedHc + +endif # BootingFromHc #----------------------------------------------------------------------------- # Happy Suffix Rules