From 7d8179686db562b7517b3d77c207ee04370ee22b Mon Sep 17 00:00:00 2001 From: Harry Moffat Date: Wed, 19 Apr 2006 20:44:22 +0000 Subject: [PATCH] Added a ldemulation arg to the strip command. This is necessary when compiling 32 bit on a 64 bit linux box. --- ext/f2c_libs/Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/f2c_libs/Makefile.in b/ext/f2c_libs/Makefile.in index e3c3f6d9d..aa3ff0528 100755 --- a/ext/f2c_libs/Makefile.in +++ b/ext/f2c_libs/Makefile.in @@ -36,7 +36,7 @@ F2C_H = $(BUILDINCDIR)/f2c.h # compile, then strip unnecessary symbols .c.o: f2c.h $(CC) -c -DSkip_f2c_Undefs $(CFLAGS) $*.c - ld -r -x -o $*.xxx $*.o + ld @ldemulationarg@ -r -x -o $*.xxx $*.o mv $*.xxx $*.o ## Under Solaris (and other systems that do not understand ld -x),