diff options
author | Alan Modra <amodra@gmail.com> | 2020-06-21 20:54:24 +0930 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2020-06-21 22:16:59 +0930 |
commit | 1e92785005ce880a5fac9d022f05cdcff91c3091 (patch) | |
tree | f6d8730b252a3c95aa37402fc625dddd80a5fb00 /bfd/configure | |
parent | 0381901e629115f5f0d92a27fe74b1814f6f389a (diff) | |
download | gdb-1e92785005ce880a5fac9d022f05cdcff91c3091.zip gdb-1e92785005ce880a5fac9d022f05cdcff91c3091.tar.gz gdb-1e92785005ce880a5fac9d022f05cdcff91c3091.tar.bz2 |
PR26132, ar creates invalid libraries for some targets with plugins enabled
PR 26132
* configure.ac: Disable plugins by default for some targets.
* plugin.c: Comment typo fix.
* configure: Regenerate.
Diffstat (limited to 'bfd/configure')
-rwxr-xr-x | bfd/configure | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/bfd/configure b/bfd/configure index 492cbc3..c826751 100755 --- a/bfd/configure +++ b/bfd/configure @@ -12400,6 +12400,30 @@ fi +case "${target}" in + vax-*-netbsdelf*) ;; + *-*-*aout* | i[3-7]86-*-bsd* | i[3-7]86-*-msdos* | ns32k-*-* | \ + pdp11-*-* | vax-*-*bsd*) + if test "$plugins" = "yes"; then + if test "${enable_plugins+set}" = set; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Enabling plugins for AOUT is experimental" >&5 +$as_echo "$as_me: WARNING: Enabling plugins for AOUT is experimental" >&2;} + else + plugins=no + fi + fi ;; + *-*-*vms* | \ + powerpc*-*-aix* | powerpc-*-beos* | powerpc-*-macos* | rs6000-*-*) + if test "$plugins" = "yes"; then + if test "${enable_plugins+set}" = set; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Enabling plugins may result in ar creating non-standard archives for ${target}" >&5 +$as_echo "$as_me: WARNING: Enabling plugins may result in ar creating non-standard archives for ${target}" >&2;} + else + plugins=no + fi + fi ;; +esac + if test "$plugins" = "yes"; then PLUGINS_TRUE= PLUGINS_FALSE='#' |