From 7ed550a043ef807810d68cc5c064ab331a81f3bf Mon Sep 17 00:00:00 2001 From: simonmar Date: Tue, 5 Aug 2003 12:00:03 +0000 Subject: [PATCH] [project @ 2003-08-05 12:00:03 by simonmar] Remove special mingw32 case for configuring GMP, since it appears to be wrong. --- ghc/rts/Makefile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index b210309..1e39b6f 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -213,16 +213,9 @@ endif ifneq "$(HaveLibGmp)" "YES" ifneq "$(HaveFrameworkHaskellSupport)" "YES" -ifneq "$(HOSTPLATFORM)" "i386-unknown-mingw32" boot :: - cd gmp && ./configure --enable-shared=no \ + cd gmp && CC=$(WhatGccIsCalled) ./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 && CC=$(WhatGccIsCalled) ./configure --enable-shared=no --target=$(HOSTPLATFORM) -endif # Slight cheatage here to pass host as target, but x-compilation isn't supported by ghc. -- 1.7.10.4