diff options
author | Ian Lynagh <igloo@earth.li> | 2011-10-14 21:27:57 +0100 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2011-10-14 21:27:57 +0100 |
commit | bdb0bba0ce4cd33195955bfb0d13191d62ed6cd9 (patch) | |
tree | a0aba5951149f58a50f9e99ed70aef4bc9cee6f0 /mk | |
parent | 0ffc2b29dceab32c808b6e5a7232859711385a18 (diff) | |
download | haskell-bdb0bba0ce4cd33195955bfb0d13191d62ed6cd9.tar.gz |
Temporary hack to get Windows to validate again
For now, turn off dynlibs when validating
Diffstat (limited to 'mk')
-rw-r--r-- | mk/validate-settings.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mk/validate-settings.mk b/mk/validate-settings.mk index 00d465708a..e42c6c593f 100644 --- a/mk/validate-settings.mk +++ b/mk/validate-settings.mk @@ -27,7 +27,12 @@ GhcStage2HcOpts += -O # running of the tests, and faster building of the utils to be installed GhcLibHcOpts += -O -dcore-lint +ifeq "$(Windows)" "YES" +# This is a temporary hack to workaround a libffi build problem +GhcLibWays := $(filter v,$(GhcLibWays)) +else GhcLibWays := $(filter v dyn,$(GhcLibWays)) +endif SplitObjs = NO NoFibWays = STRIP_CMD = : |