]> git.ipfire.org Git - thirdparty/glibc.git/commit
Fix LIBC_PROG_BINUTILS for -fuse-ld=lld
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>
Tue, 26 Oct 2021 12:02:57 +0000 (09:02 -0300)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Fri, 29 Oct 2021 12:21:37 +0000 (09:21 -0300)
commit3d5ecb624638627869e6965410f558b15db6946e
tree07989c89c19c217d024e4d7d3dc63ba0435673e2
parent66a273d16a63d1ed74a8d14a210a04c6a0f5dd45
Fix LIBC_PROG_BINUTILS for -fuse-ld=lld

GCC does not print the correct linker when -fuse-ld=lld is used with
the -print-prog-name=ld:

  $ gcc -v 2>&1 | tail -n 1
  gcc version 11.2.0 (Ubuntu 11.2.0-7ubuntu2)
  $ gcc
  ld

This is different than for gold:

  $ gcc -fuse-ld=gold -print-prog-name=ld
  ld.gold

Using ld.lld as the static linker name prints the expected result.

This is only required when -fuse-ld=lld is used, if lld is used as
the 'ld' programs (through a symlink) LIBC_PROG_BINUTILS works
as expected.

Checked on x86_64-linux-gnu.

Reviewed-by: Fangrui Song <maskray@google.com>
aclocal.m4
configure