diff options
author | Ian Lynagh <igloo@earth.li> | 2011-04-23 13:40:52 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-04-23 13:40:52 +0100 |
commit | f845e5f8339ead4b7189d5d1af6d882593af5dcc (patch) | |
tree | fb4b11ec5d464fbc1711855bdb7eca617edacde9 /rules/hs-suffix-rules-srcdir.mk | |
parent | 83e504bb061ff9dca79d72c92ed25a8d245d4cd9 (diff) | |
download | haskell-f845e5f8339ead4b7189d5d1af6d882593af5dcc.tar.gz |
Make stage-specific CC variables
This allows different gcc's to be used when building different stages,
which we need to do when cross-compiling.
Diffstat (limited to 'rules/hs-suffix-rules-srcdir.mk')
-rw-r--r-- | rules/hs-suffix-rules-srcdir.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rules/hs-suffix-rules-srcdir.mk b/rules/hs-suffix-rules-srcdir.mk index 7e9c8d377d..bdb9d00282 100644 --- a/rules/hs-suffix-rules-srcdir.mk +++ b/rules/hs-suffix-rules-srcdir.mk @@ -52,10 +52,10 @@ endif # .hs->.o rule, I don't know why --SDM $1/$2/build/%.$$($3_osuf) : $1/$4/%.hc includes/ghcautoconf.h includes/ghcplatform.h | $$$$(dir $$$$@)/. - "$$(CC)" $$($1_$2_$3_ALL_CC_OPTS) -Iincludes -x c -c $$< -o $$@ + "$$($1_$2_CC)" $$($1_$2_$3_ALL_CC_OPTS) -Iincludes -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_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 $$@ |