From: qrczak Date: Fri, 25 Aug 2000 10:06:37 +0000 (+0000) Subject: [project @ 2000-08-25 10:06:37 by qrczak] X-Git-Tag: Approximately_9120_patches~3830 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=fd23905bf703daa9df3a0d6858d32aa737b0516b;p=ghc-hetmet.git [project @ 2000-08-25 10:06:37 by qrczak] 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. --- diff --git a/ghc/rts/Makefile b/ghc/rts/Makefile index 9c7e5f0..b0ce195 100644 --- a/ghc/rts/Makefile +++ b/ghc/rts/Makefile @@ -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 #-----------------------------------------------------------------------------