diff options
author | Ian Lynagh <igloo@earth.li> | 2011-04-29 14:19:53 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-04-29 14:19:53 +0100 |
commit | feabe9933969905173d0abe94343d9355e3d8df6 (patch) | |
tree | db7f392a1238bb3aaf36ec76e955aa5dabd97633 /compiler/ghc.mk | |
parent | 28e92f3622eaf5ea28cb6226aa41cee8ad69681d (diff) | |
download | haskell-feabe9933969905173d0abe94343d9355e3d8df6.tar.gz |
Add "C compiler flags" to settings file
I've made cpp_args include gcc_args. It effectively didn't before,
but seeing as gcc_args sometimes has -D flags in, I think doing so
is the right thing to do.
Diffstat (limited to 'compiler/ghc.mk')
-rw-r--r-- | compiler/ghc.mk | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/compiler/ghc.mk b/compiler/ghc.mk index 76b393f04b..e26149c902 100644 --- a/compiler/ghc.mk +++ b/compiler/ghc.mk @@ -108,8 +108,6 @@ compiler/stage%/build/Config.hs : mk/config.mk mk/project.mk | $$(dir $$@)/. @echo 'cBooterVersion = "$(GhcVersion)"' >> $@ @echo 'cStage :: String' >> $@ @echo 'cStage = show (STAGE :: Int)' >> $@ - @echo 'cCcOpts :: [String]' >> $@ - @echo 'cCcOpts = words "$(CONF_CC_OPTS_STAGE$*)"' >> $@ @echo 'cGccLinkerOpts :: [String]' >> $@ @echo 'cGccLinkerOpts = words "$(CONF_GCC_LINKER_OPTS_STAGE$*)"' >> $@ @echo 'cLdLinkerOpts :: [String]' >> $@ |