diff options
author | Ian Lynagh <igloo@earth.li> | 2009-09-13 14:21:22 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2009-09-13 14:21:22 +0000 |
commit | d210b148c72c7fa97e87214d38608ef011657271 (patch) | |
tree | e4cd9136c3a9ec02ecde100bbcd6ee9f27f8cf83 | |
parent | 207a5772ef67c3b26ea3fb9b8beb20d9b3c40368 (diff) | |
download | haskell-d210b148c72c7fa97e87214d38608ef011657271.tar.gz |
Fixes for compiling the HEAD with iteslf
-rw-r--r-- | compiler/ghc.mk | 12 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | mk/config.mk.in | 1 | ||||
-rw-r--r-- | utils/ghc-cabal/ghc-cabal.hs | 1 |
4 files changed, 11 insertions, 5 deletions
diff --git a/compiler/ghc.mk b/compiler/ghc.mk index e8c487f32e..498e8dc8b8 100644 --- a/compiler/ghc.mk +++ b/compiler/ghc.mk @@ -364,19 +364,23 @@ ifeq "$(HOSTPLATFORM)" "i386-unknown-mingw32" # The #include is vital for the via-C route with older compilers, else the C # compiler doesn't realise that the stcall foreign imports are indeed # stdcall, and doesn't generate the Foo@8 name for them -# As it's only important for older compilers we don't need to do anything -# for stage2+. +# It's only important for older compilers, and in fact newer compilers +# will give a warning if the -#include flag is used. We therefore only +# do it for stage1, and only for < 6.11. +ifeq "$(ghc_ge_611)" "NO" compiler_stage1_CONFIGURE_OPTS += --ghc-option='-\#include' \ --ghc-option='"<windows.h>"' \ --ghc-option='-\#include' \ --ghc-option='"<process.h>"' endif +endif # ghc_strlen percolates through so many modules that it is easier to get its # prototype via a global option instead of a myriad of per-file OPTIONS. -# Again, this is only important for older compilers, so we don't do it in -# stage 2+. +# Again, this is only done for older compilers. +ifeq "$(ghc_ge_611)" "NO" compiler_stage1_CONFIGURE_OPTS += --ghc-options='-\#include "cutils.h"' +endif compiler_stage3_CONFIGURE_OPTS := $(compiler_stage2_CONFIGURE_OPTS) diff --git a/configure.ac b/configure.ac index c615967607..5387c83972 100644 --- a/configure.ac +++ b/configure.ac @@ -128,8 +128,10 @@ if test "$WithGhc" != ""; then if test $GhcCanonVersion -ge 609; then ghc_ge_609=YES; else ghc_ge_609=NO; fi FP_COMPARE_VERSIONS($GhcVersion,[-ge],[6.10.2], [ghc_ge_6102=YES], [ghc_ge_6102=NO]) + if test $GhcCanonVersion -ge 611; then ghc_ge_611=YES; else ghc_ge_611=NO; fi AC_SUBST(ghc_ge_609)dnl AC_SUBST(ghc_ge_6102)dnl + AC_SUBST(ghc_ge_611)dnl fi dnl ** Must have GHC to build GHC, unless --enable-hc-boot is on diff --git a/mk/config.mk.in b/mk/config.mk.in index 65162381fb..0b2300c5cd 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -509,6 +509,7 @@ GhcMinVersion = @GhcMinVersion@ ghc_ge_609 = @ghc_ge_609@ ghc_ge_6102 = @ghc_ge_6102@ +ghc_ge_611 = @ghc_ge_611@ # Canonicalised ghc version number, used for easy (integer) version # comparisons. We must expand $(GhcMinVersion) to two digits by diff --git a/utils/ghc-cabal/ghc-cabal.hs b/utils/ghc-cabal/ghc-cabal.hs index 3d9cf13dcb..f5fd6d86c4 100644 --- a/utils/ghc-cabal/ghc-cabal.hs +++ b/utils/ghc-cabal/ghc-cabal.hs @@ -26,7 +26,6 @@ import System.Directory import System.Environment import System.Exit import System.FilePath -import Data.Char main :: IO () main = do args <- getArgs |