X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Frts%2FMakefile;h=1e39b6f88ded5d4eb94e6ffdb1af29d0a19d6e75;hb=7ed550a043ef807810d68cc5c064ab331a81f3bf;hp=b210309de001477ca2cdf4be6f349250cf1bfcee;hpb=90af5e7b48c2f0ec74891c1399d46781d078484a;p=ghc-hetmet.git 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.