Added a ldemulation arg to the strip command. This is necessary

when compiling 32 bit on a 64 bit linux box.
This commit is contained in:
Harry Moffat 2006-04-19 20:44:22 +00:00
parent 53cbe7e119
commit 7d8179686d

View file

@ -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),