diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2021-01-11 16:29:31 -0800 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2021-01-11 16:29:45 -0800 |
commit | 83b33c6cb90db6c110bff0d5024713e8af747005 (patch) | |
tree | 6d5806bacd136c972b3d7ce5368c8b87c310a197 /bfd | |
parent | 03c02f3116d75721f917c4155cefb18b940a43ff (diff) | |
download | binutils-gdb-83b33c6cb90db6c110bff0d5024713e8af747005.tar.gz |
Binutils: Check if AR works with --plugin and rc
Check if AR works with --plugin and rc before passing --plugin to AR and
RANLIB.
bfd/
PR ld/27173
binutils/
PR ld/27173
* configure: Regenerated.
gas/
PR ld/27173
* configure: Regenerated.
gprof/
PR ld/27173
* configure: Regenerated.
ld/
PR ld/27173
* configure: Regenerated.
libctf/
PR ld/27173
* configure: Regenerated.
opcodes/
PR ld/27173
* configure: Regenerated.
Diffstat (limited to 'bfd')
-rw-r--r-- | bfd/ChangeLog | 5 | ||||
-rwxr-xr-x | bfd/configure | 14 |
2 files changed, 16 insertions, 3 deletions
diff --git a/bfd/ChangeLog b/bfd/ChangeLog index 876cd1c86e3..38123b44407 100644 --- a/bfd/ChangeLog +++ b/bfd/ChangeLog @@ -1,3 +1,8 @@ +2021-01-11 H.J. Lu <hongjiu.lu@intel.com> + + PR ld/27173 + * configure: Regenerated. + 2021-01-11 Nick Clifton <nickc@redhat.com> * po/fr.po: Updated French translation. diff --git a/bfd/configure b/bfd/configure index 4b8dede2150..32c547f53bc 100755 --- a/bfd/configure +++ b/bfd/configure @@ -6932,7 +6932,15 @@ fi test -z "$AR" && AR=ar if test -n "$plugin_option"; then if $AR --help 2>&1 | grep -q "\--plugin"; then - AR="$AR $plugin_option" + touch conftest.c + $AR $plugin_option rc conftest.a conftest.c + if test "$?" != 0; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Failed: $AR $plugin_option rc" >&5 +$as_echo "$as_me: WARNING: Failed: $AR $plugin_option rc" >&2;} + else + AR="$AR $plugin_option" + fi + rm -f conftest.* fi fi test -z "$AR_FLAGS" && AR_FLAGS=cru @@ -11742,7 +11750,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11745 "configure" +#line 11753 "configure" #include "confdefs.h" #if HAVE_DLFCN_H @@ -11848,7 +11856,7 @@ else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF -#line 11851 "configure" +#line 11859 "configure" #include "confdefs.h" #if HAVE_DLFCN_H |