From: Ian Lynagh Date: Sat, 26 Mar 2011 21:01:10 +0000 (+0000) Subject: Fix the build on Windows (disable hsc2hs --cross-safe) X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=5c538c457d1215d7f5b5107ac808a24af805f870 Fix the build on Windows (disable hsc2hs --cross-safe) The .hsc files aren't currently safe for cross-compilation on Windows: libraries\haskeline\.\System\Console\Haskeline\Backend\Win32.hsc:160 directive "let" is not safe for cross-compilation --- diff --git a/mk/config.mk.in b/mk/config.mk.in index 948f805..b478997 100644 --- a/mk/config.mk.in +++ b/mk/config.mk.in @@ -560,7 +560,12 @@ ifeq "$(TARGETPLATFORM)" "ia64-unknown-linux" CONF_CC_OPTS += -G0 endif +# The .hsc files aren't currently safe for cross-compilation on Windows: +# libraries\haskeline\.\System\Console\Haskeline\Backend\Win32.hsc:160 +# directive "let" is not safe for cross-compilation +ifneq "$(Windows)" "YES" SRC_HSC2HS_OPTS += --cross-safe +endif SRC_HSC2HS_OPTS += $(addprefix --cflag=,$(filter-out -O,$(SRC_CC_OPTS) $(CONF_CC_OPTS_STAGE0))) SRC_HSC2HS_OPTS += $(foreach d,$(GMP_INCLUDE_DIRS),-I$(d))