[project @ 2000-08-25 10:06:37 by qrczak]
authorqrczak <unknown>
Fri, 25 Aug 2000 10:06:37 +0000 (10:06 +0000)
committerqrczak <unknown>
Fri, 25 Aug 2000 10:06:37 +0000 (10:06 +0000)
Don't strip libgmp.a. (But perhaps --strip-unneeded or something
would be harmless.)

PS. The configure script looks for __gmpz_fdiv_qr, but gmp that I have
installed uses the name mpz_fdiv_qr and is thus not being found. (Also
it is dynamically linked, where ghc's gmp is only statically linked.)
I guess that configure should check for either name.

ghc/rts/Makefile

index 9c7e5f0..b0ce195 100644 (file)
@@ -1,5 +1,5 @@
 #-----------------------------------------------------------------------------
-# $Id: Makefile,v 1.34 2000/08/21 15:27:18 simonmar Exp $
+# $Id: Makefile,v 1.35 2000/08/25 10:06:37 qrczak Exp $
 #
 #  This is the Makefile for the runtime-system stuff.
 #  This stuff is written in C (and cannot be written in Haskell).
@@ -157,7 +157,6 @@ endif
 gmp/libgmp.a ::
        $(MAKE) -C gmp MAKEFLAGS=
        @$(CP) gmp/.libs/libgmp.a gmp
-       @$(STRIP) gmp/libgmp.a
 endif
 
 #-----------------------------------------------------------------------------