aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Liska <mliska@suse.cz>2022-06-28 10:34:56 +0200
committerMartin Liska <mliska@suse.cz>2022-06-28 10:35:32 +0200
commit6835baee7196eeb03f24f6e650c0d37cbb295647 (patch)
tree5f654877c39660a453cdef857914bdb3acbe0524
parent30aea28bd30027e0a6be8e3077828256779954b3 (diff)
downloadgcc-6835baee7196eeb03f24f6e650c0d37cbb295647.zip
gcc-6835baee7196eeb03f24f6e650c0d37cbb295647.tar.gz
gcc-6835baee7196eeb03f24f6e650c0d37cbb295647.tar.bz2
libgomp: fix typo in mold linker detection
libgomp/ChangeLog: * acinclude.m4: Fix typo in mold linker detection. * Makefile.in: Regenerate. * configure: Regenerate.
-rw-r--r--libgomp/Makefile.in2
-rw-r--r--libgomp/acinclude.m42
-rwxr-xr-xlibgomp/configure2
3 files changed, 3 insertions, 3 deletions
diff --git a/libgomp/Makefile.in b/libgomp/Makefile.in
index 8f6255f..8ffd45c 100644
--- a/libgomp/Makefile.in
+++ b/libgomp/Makefile.in
@@ -16,7 +16,7 @@
# Plugins for offload execution, Makefile.am fragment.
#
-# Copyright (C) 2014-2021 Free Software Foundation, Inc.
+# Copyright (C) 2014-2022 Free Software Foundation, Inc.
#
# Contributed by Mentor Embedded.
#
diff --git a/libgomp/acinclude.m4 b/libgomp/acinclude.m4
index b8154eb..12fbb20 100644
--- a/libgomp/acinclude.m4
+++ b/libgomp/acinclude.m4
@@ -154,7 +154,7 @@ AC_DEFUN([LIBGOMP_CHECK_LINKER_FEATURES], [
if $LD --version 2>/dev/null | grep 'GNU gold'> /dev/null 2>&1; then
libgomp_ld_is_gold=yes
elif $LD --version 2>/dev/null | grep 'mold'> /dev/null 2>&1; then
- libat_ld_is_mold=yes
+ libgomp_ld_is_mold=yes
fi
changequote(,)
ldver=`$LD --version 2>/dev/null |
diff --git a/libgomp/configure b/libgomp/configure
index 89f14e4..b11170e 100755
--- a/libgomp/configure
+++ b/libgomp/configure
@@ -16027,7 +16027,7 @@ with_gnu_ld=$lt_cv_prog_gnu_ld
if $LD --version 2>/dev/null | grep 'GNU gold'> /dev/null 2>&1; then
libgomp_ld_is_gold=yes
elif $LD --version 2>/dev/null | grep 'mold'> /dev/null 2>&1; then
- libat_ld_is_mold=yes
+ libgomp_ld_is_mold=yes
fi
ldver=`$LD --version 2>/dev/null |