From a103f9f304854ba9cc394abe9abeb148ea8bee85 Mon Sep 17 00:00:00 2001 From: rrt Date: Wed, 6 Jun 2001 10:35:39 +0000 Subject: [PATCH] [project @ 2001-06-06 10:35:39 by rrt] Add comment about why gmp is configured differently on Windows. --- ghc/rts/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index 7d880db..5adfa21 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -1,5 +1,5 @@ #----------------------------------------------------------------------------- -# $Id: Makefile,v 1.49 2001/05/22 15:58:57 simonmar Exp $ +# $Id: Makefile,v 1.50 2001/06/06 10:35:39 rrt Exp $ # # This is the Makefile for the runtime-system stuff. # This stuff is written in C (and cannot be written in Haskell). @@ -155,6 +155,8 @@ boot :: cd gmp && ./configure --enable-shared=no \ --host=`echo $(HOSTPLATFORM) | sed 's/i[567]86/i486/g'` else +# Pass --target to configure of GMP, so that building for mingwin under +# cygwin works properly (when the host is not the same as the target) boot :: cd gmp && ./configure --enable-shared=no --target=$(HOSTPLATFORM) endif -- 1.7.10.4