Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/bdb0bba0ce4cd33195955bfb0d13191d62ed6cd9 >--------------------------------------------------------------- commit bdb0bba0ce4cd33195955bfb0d13191d62ed6cd9 Author: Ian Lynagh <[email protected]> Date: Fri Oct 14 21:27:57 2011 +0100 Temporary hack to get Windows to validate again For now, turn off dynlibs when validating >--------------------------------------------------------------- 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 00d4657..e42c6c5 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 = : _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
