Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/97c24cddca60e80ec150483482c2a5dc1e506a76 >--------------------------------------------------------------- commit 97c24cddca60e80ec150483482c2a5dc1e506a76 Author: Ian Lynagh <[email protected]> Date: Thu Mar 15 14:58:38 2012 +0000 Build the Windows ghci wrapper with stage1, not stage0 We use the in-place windres, which isn't guaranteed to work with the stage0 compiler. >--------------------------------------------------------------- driver/ghci/ghc.mk | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/driver/ghci/ghc.mk b/driver/ghci/ghc.mk index 51203ab..1d609c7 100644 --- a/driver/ghci/ghc.mk +++ b/driver/ghci/ghc.mk @@ -34,7 +34,7 @@ driver/ghci_dist_PROG = ghci$(exeext) driver/ghci_dist_INSTALL = YES driver/ghci_dist_OTHER_OBJS = driver/ghci/ghci.res -$(eval $(call build-prog,driver/ghci,dist,0)) +$(eval $(call build-prog,driver/ghci,dist,1)) driver/ghci_dist_PROG_VER = ghci-$(ProjectVersion)$(exeext) _______________________________________________ Cvs-ghc mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-ghc
