Bootstrapping fixes
authorIan Lynagh <igloo@earth.li>
Mon, 4 May 2009 14:25:11 +0000 (14:25 +0000)
committerIan Lynagh <igloo@earth.li>
Mon, 4 May 2009 14:25:11 +0000 (14:25 +0000)
ghc.mk
rules/hs-suffix-rules-srcdir.mk

diff --git a/ghc.mk b/ghc.mk
index 4406d31..8c33e0e 100644 (file)
--- a/ghc.mk
+++ b/ghc.mk
@@ -856,6 +856,10 @@ publish-sdist :
        $(call nTimes,10,$(PublishCp) $(SRC_DIST_TARBALL) $(PublishLocation)/dist)
 endif
 
+ifeq "$(GhcUnregisterised)" "YES"
+SRC_CC_OPTS += -DNO_REGS -DUSE_MINIINTERPRETER
+endif
+
 # -----------------------------------------------------------------------------
 # Cleaning
 
index 72a24b2..a75068b 100644 (file)
@@ -54,11 +54,11 @@ endif
 # XXX: for some reason these get used in preference to the direct
 # .hs->.o rule, I don't know why --SDM
 
-$1/$2/build/%.$$($3_osuf) : $1/$4/%.hc
-       $$(CC) $$($1_$2_$3_ALL_CC_OPTS) -x c -c $$< -o $$@
+$1/$2/build/%.$$($3_osuf) : $1/$4/%.hc includes/ghcautoconf.h includes/ghcplatform.h
+       $$(CC) $$($1_$2_$3_ALL_CC_OPTS) -Iincludes -x c -c $$< -o $$@
 
-$1/$2/build/%.$$($3_osuf) : $1/$2/build/%.hc
-       $$(CC) $$($1_$2_$3_ALL_CC_OPTS) -x c -c $$< -o $$@
+$1/$2/build/%.$$($3_osuf) : $1/$2/build/%.hc includes/ghcautoconf.h includes/ghcplatform.h
+       $$(CC) $$($1_$2_$3_ALL_CC_OPTS) -Iincludes -x c -c $$< -o $$@
 
 # $1/$2/build/%.$$($3_osuf) : $1/$2/build/%.$$($3_way_)hc
 #      $$($1_$2_HC) $$($1_$2_$3_ALL_HC_OPTS) -c $$< -o $$@