diff options
author | Martin Liska <mliska@suse.cz> | 2022-01-21 17:10:07 +0100 |
---|---|---|
committer | Martin Liska <mliska@suse.cz> | 2022-01-31 09:46:44 +0100 |
commit | c99a6eb01536d18e700a3c6935714a0fa0c96340 (patch) | |
tree | e4be1bab051d6cc0578a1a0ad18f43c37fb76d6b /libatomic/configure | |
parent | 625f16c798757dcbfdded841f01d7c566d15c55c (diff) | |
download | gcc-c99a6eb01536d18e700a3c6935714a0fa0c96340.tar.gz |
Add mold detection for libs.
libatomic/ChangeLog:
* acinclude.m4: Detect *_ld_is_mold and use it.
* configure: Regenerate.
libgomp/ChangeLog:
* acinclude.m4: Detect *_ld_is_mold and use it.
* configure: Regenerate.
libitm/ChangeLog:
* acinclude.m4: Detect *_ld_is_mold and use it.
* configure: Regenerate.
libstdc++-v3/ChangeLog:
* acinclude.m4: Detect *_ld_is_mold and use it.
* configure: Regenerate.
Diffstat (limited to 'libatomic/configure')
-rwxr-xr-x | libatomic/configure | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libatomic/configure b/libatomic/configure index fb920c9a687..34434d21764 100755 --- a/libatomic/configure +++ b/libatomic/configure @@ -15197,8 +15197,11 @@ with_gnu_ld=$lt_cv_prog_gnu_ld # Start by getting the version number. I think the libtool test already # does some of this, but throws away the result. libat_ld_is_gold=no + libat_ld_is_mold=no if $LD --version 2>/dev/null | grep 'GNU gold'> /dev/null 2>&1; then libat_ld_is_gold=yes + elif $LD --version 2>/dev/null | grep 'mold' >/dev/null 2>&1; then + libat_ld_is_mold=yes fi ldver=`$LD --version 2>/dev/null | @@ -15401,6 +15404,8 @@ if test $enable_symvers != no && test $libat_shared_libgcc = yes; then enable_symvers=gnu elif test $libat_ld_is_gold = yes ; then enable_symvers=gnu + elif test $libat_ld_is_mold = yes ; then + enable_symvers=gnu else # The right tools, the right setup, but too old. Fallbacks? { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: === Linker version $libat_gnu_ld_version is too old for" >&5 |