This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Fink on Darwin sets ld environment variables
- From: Brad Lucier <lucier at math dot purdue dot edu>
- To: gcc at gcc dot gnu dot org
- Cc: lucier at math dot purdue dot edu (Brad Lucier)
- Date: Fri, 28 Nov 2003 11:45:22 -0500 (EST)
- Subject: Fink on Darwin sets ld environment variables
There was a recent question about link failures in the f77 test suite on
MacOS due to extra warnings. These happen because fink 6.2 defines several
linker-related environment variables; here's part of the output of printenv
on my box:
LD_SEG_ADDR_TABLE=/sw/var/lib/fink/prebound/seg_addr_table
LD_PREBIND=1
LD_PREBIND_ALLOW_OVERLAP=1
This will result in warnings from the linker if you happen to specify options
that override these environment variables. (The one that bit me was LD_PREBIND)
Brad