diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-06-08 09:43:36 +0200 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-06-08 09:43:36 +0200 |
commit | f2c06ab8dd90582030991f631a2715216bf45e5a (patch) | |
tree | 3a5d2d13b735151024ec687ab4546d7f4182f57c /INSTALL | |
parent | Better detection of unsupported compiler options. (diff) | |
download | openssh-f2c06ab8dd90582030991f631a2715216bf45e5a.tar.xz openssh-f2c06ab8dd90582030991f631a2715216bf45e5a.zip |
Remove ability to override $LD.
Since autoconf always uses $CC to link C programs, allowing users to
override LD caused mismatches between what LD_LINK_IFELSE thought worked
and what ld thought worked. If you do need to do this kind of thing you
need to set a compiler flag such as gcc's -fuse-ld in LDFLAGS.
Diffstat (limited to 'INSTALL')
-rw-r--r-- | INSTALL | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -220,7 +220,7 @@ If you need to pass special options to the compiler or linker, you can specify these as environment variables before running ./configure. For example: -CFLAGS="-O -m486" LDFLAGS="-s" LIBS="-lrubbish" LD="/usr/foo/ld" ./configure +CC="/usr/foo/cc" CFLAGS="-O" LDFLAGS="-s" LIBS="-lrubbish" ./configure 3. Configuration ---------------- |