]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
sim: drop use of bfd/configure.host
authorMike Frysinger <vapier@gentoo.org>
Sun, 17 Jan 2021 18:39:03 +0000 (13:39 -0500)
committerMike Frysinger <vapier@gentoo.org>
Sat, 6 Feb 2021 15:56:11 +0000 (10:56 -0500)
These settings might have made sense in darker compiler times, but I
think they're largely obsolete now.  Looking through the values that
get used in HDEFINES, it's quite limited, and configure itself should
handle them.  If we still need something, we can leverage standard
autoconf macros instead, after we get a clear user report.

TDEFINES was never set anywhere and was always empty, so prune that.

73 files changed:
sim/ChangeLog
sim/aarch64/ChangeLog
sim/aarch64/configure
sim/arm/ChangeLog
sim/arm/configure
sim/avr/ChangeLog
sim/avr/configure
sim/bfin/ChangeLog
sim/bfin/configure
sim/bpf/ChangeLog
sim/bpf/configure
sim/common/ChangeLog
sim/common/Make-common.in
sim/common/acinclude.m4
sim/configure
sim/configure.ac
sim/cr16/ChangeLog
sim/cr16/configure
sim/cris/ChangeLog
sim/cris/configure
sim/d10v/ChangeLog
sim/d10v/configure
sim/erc32/ChangeLog
sim/erc32/configure
sim/frv/ChangeLog
sim/frv/configure
sim/ft32/ChangeLog
sim/ft32/configure
sim/h8300/ChangeLog
sim/h8300/configure
sim/igen/ChangeLog
sim/igen/configure
sim/igen/configure.ac
sim/iq2000/ChangeLog
sim/iq2000/configure
sim/lm32/ChangeLog
sim/lm32/configure
sim/m32c/ChangeLog
sim/m32c/configure
sim/m32r/ChangeLog
sim/m32r/configure
sim/m68hc11/ChangeLog
sim/m68hc11/configure
sim/mcore/ChangeLog
sim/mcore/configure
sim/microblaze/ChangeLog
sim/microblaze/configure
sim/mips/ChangeLog
sim/mips/configure
sim/mn10300/ChangeLog
sim/mn10300/configure
sim/moxie/ChangeLog
sim/moxie/configure
sim/msp430/ChangeLog
sim/msp430/configure
sim/or1k/ChangeLog
sim/or1k/configure
sim/ppc/ChangeLog
sim/ppc/Makefile.in
sim/ppc/configure
sim/ppc/configure.ac
sim/pru/ChangeLog
sim/pru/configure
sim/riscv/ChangeLog
sim/riscv/configure
sim/rl78/ChangeLog
sim/rl78/configure
sim/rx/ChangeLog
sim/rx/configure
sim/sh/ChangeLog
sim/sh/configure
sim/v850/ChangeLog
sim/v850/configure

index 6130371a447d67fc2e15c44e31605d83d0246ae1..e98229177aa578fa705f384b130c8faf1c0ce25e 100644 (file)
@@ -1,3 +1,8 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure.ac (HDEFINES): Delete AC_SUBST call.
+       * configure: Regenerate.
+
 2021-02-04  Mike Frysinger  <vapier@gentoo.org>
 
        * configure.tgt (sim_arch): Add entry for riscv*-*-*.
@@ -1426,5 +1431,3 @@ Mon Feb  8 11:46:06 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
 
        * Makefile.in, configure.in: if target isn't supported, build a
        harmless makefile.
-
-
index e4f07482c3cf6e99e556f136948e57840089d50b..ccc709a26ea26cf1d00ae821b962bf74cc3e4c73 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index b682b1b36e79e26b65af27c0f0a0c2172f30dd58..9f88ed8a6304e13279c1cfa7a580b4fe1c6a22a3 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 7b49939da0bdeb973bc14015d9dc717e30642456..0d9a87d6be17dc09a6fe6876f27758ebe43a77ca 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index 51dcea114d7fd550befb0b1d1f699fb99f6ecb56..4e1d2cbca5772b8fcff6b56620e4f9562d9170b8 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 2854ff87eaf7b15f59950541677abefa58db2645..505e284ce3b58621d357b9fdb56435df4f21a33a 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-30  Mike Frysinger  <vapier@gentoo.org>
 
        * interp.c (sim_open): Delete STATE_WATCHPOINTS (sd)->sizeof_pc.
index 3eb9c8745725fd36097c5ad03939fa7efd1c48eb..74ecc7c71484d7a6be5026d220354eeaaed5a9d6 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 70910b2c60964371d7c73de489311624f201db57..ee76d3eb9922277e2af24330274fa5c1707c45a0 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-30  Mike Frysinger  <vapier@gentoo.org>
 
        * interp.c (sim_open): Delete STATE_WATCHPOINTS (sd)->sizeof_pc.
index c0d129d8124b7a2bcd2c7c096623505257a505dc..d3a8cf4a06d8b92cc7bb27c72b853395bd50b1ff 100755 (executable)
@@ -686,7 +686,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6948,7 +6947,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
@@ -8608,7 +8615,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12972,7 +12978,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12975 "configure"
+#line 12981 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13078,7 +13084,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13081 "configure"
+#line 13087 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13317,8 +13323,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 5b6a8070283d6a9ff624aa78cf6cdb35ea0ef606..acfcc0b9b9ad47a72f4e52f967ca6d11df0d7719 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-31  Mike Frysinger  <vapier@gentoo.org>
 
        * mloop.in (xextract-scache): Call SEM_ARGBUF.
index 52d64ce601211577549320be70cd55930d52d9b5..996fb21b07b702e01ba9cf61258b446839fad4d0 100755 (executable)
@@ -684,7 +684,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6918,7 +6917,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
@@ -8578,7 +8585,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12942,7 +12948,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12945 "configure"
+#line 12951 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13048,7 +13054,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13051 "configure"
+#line 13057 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13287,8 +13293,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index d1a15263c7513f054cc6fab3dd49192e065e2d87..e52d34b0b43e3d8b5bab70d9a6516344bf45f09b 100644 (file)
@@ -1,3 +1,10 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * Make-common.in (HDEFINES, TDEFINES): Delete.
+       (CONFIG_CFLAGS): Delete $(HDEFINES) $(TDEFINES).
+       * acinclude.m4 (SIM_AC_COMMON): Delete AC_SUBST(HDEFINES) and
+       bfd/configure.host sourcing.
+
 2021-02-04  Mike Frysinger  <vapier@gentoo.org>
 
        * gennltvals.py (TARGETS): Add riscv.
index 8740a4a079e7ca0b20cf1b4302c918ecdf4d2656..99d55fb203839d1fe476c81b00e6c5ef9ba25906 100644 (file)
@@ -93,9 +93,6 @@ WERROR_CFLAGS = @WERROR_CFLAGS@
 SIM_WARN_CFLAGS = $(WARN_CFLAGS)
 SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
 
-HDEFINES = @HDEFINES@
-TDEFINES =
-
 AR = @AR@
 AR_FLAGS = rc
 RANLIB = @RANLIB@
@@ -230,8 +227,7 @@ CONFIG_CFLAGS = \
        $(SIM_WARN_CFLAGS) \
        $(SIM_WERROR_CFLAGS) \
        $(SIM_HARDWARE) \
-       $(SIM_EXTRA_CFLAGS) \
-       $(HDEFINES) $(TDEFINES)
+       $(SIM_EXTRA_CFLAGS)
 CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
   -I../../include -I$(srcroot)/include \
   -I../../bfd -I$(srcroot)/bfd \
index 149ddc79faa9c9cdf8b953840574872374216798..0ad2ca80cf5a25c8e4aa1d92fbb5ed03c14aabab 100644 (file)
@@ -40,7 +40,6 @@ fi
 AC_SUBST(CC_FOR_BUILD)
 
 AC_SUBST(CFLAGS)
-AC_SUBST(HDEFINES)
 AR=${AR-ar}
 AC_SUBST(AR)
 AC_PROG_RANLIB
@@ -135,8 +134,6 @@ AM_CONDITIONAL(PLUGINS, test "$plugins" = yes)
 LT_INIT([dlopen])
 AC_SUBST(lt_cv_dlopen_libs)
 
-. ${srcdir}/../../bfd/configure.host
-
 dnl Standard (and optional) simulator options.
 dnl Eventually all simulators will support these.
 dnl Do not add any here that cannot be supported by all simulators.
index 1f1ce75f699d1677c1e00d9cd6834e2c4d1ff19d..5a6298199e7bce13acfec9dbcbed940291cb430b 100755 (executable)
@@ -589,7 +589,6 @@ sim_arch
 subdirs
 CFLAGS_FOR_BUILD
 CC_FOR_BUILD
-HDEFINES
 CPP
 target_os
 target_vendor
@@ -3731,7 +3730,6 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
 ac_compiler_gnu=$ac_cv_c_compiler_gnu
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
index 99364cac7f4efacc061d15c3a77bf3b50b366478..982cbc0b6b99a101c73aa6239ddc7b4c842c0bfe 100644 (file)
@@ -12,7 +12,6 @@ AC_ARG_PROGRAM
 AC_PROG_CC
 AC_PROG_CPP
 AC_SUBST(CFLAGS)
-AC_SUBST(HDEFINES)
 AR=${AR-ar}
 AC_SUBST(AR)
 AC_PROG_RANLIB
index 7ec37863f336589645a899ce8866148063400dac..0232bf6411d6d06f978e1f156d41ee0211e91dad 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index 8a1f3867255a827a425f34a27a310f190e9d9213..91125020b17288927a77d50eca19d1f125ed5a2b 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index df6db418503d25909479b8eea404c36099d20ab9..340384c1953fdb137f25c01920fa8a290f1a18f8 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index b40c756d6d1599fa90333803551c891d33f0e072..6b73b8907b2c59829458286e2254c31fed649a5a 100755 (executable)
@@ -684,7 +684,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6919,7 +6918,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
@@ -8579,7 +8586,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12943,7 +12949,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12946 "configure"
+#line 12952 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13049,7 +13055,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13052 "configure"
+#line 13058 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13288,8 +13294,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index b5b45d28548260fc578e1833e841cfb7ba5486d0..b416f91aca2c43b69d7f865f6356ebc4936c2557 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index e7811297111b766e39e8373e6e5950f22b81f046..723b6ab71d1b6923ca83cc743de9cf08a984bf0c 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 68599f7afc647124c8e2616a8b5a36ba2b868c03..108b6aeeba5ddf81d57b4580315200005a2bb64e 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * configure.ac: Call SIM_AC_OPTION_WARNINGS.
index 71558e1851f93dbeaec92921899a3b6548eacb83..d496a9243128b88ab346912b518abf2cf2461ff6 100755 (executable)
@@ -683,7 +683,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6900,7 +6899,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
@@ -8560,7 +8567,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12924,7 +12930,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12927 "configure"
+#line 12933 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13030,7 +13036,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13033 "configure"
+#line 13039 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13269,8 +13275,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 83770c3067aa0afcce2688ba20dc933a4fe61655..47c4bea280eb3096d57c973390edbf3f72edb279 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-30  Mike Frysinger  <vapier@gentoo.org>
 
        * sim-if.c (sim_open): Delete STATE_WATCHPOINTS (sd)->sizeof_pc.
index dd0cf46484353f5d147ddebce101ab5f1686556d..b8ead7b447dd99c40e149e7b42b6a3ff1d18a24a 100755 (executable)
@@ -685,7 +685,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6922,7 +6921,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
@@ -8582,7 +8589,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12946,7 +12952,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12949 "configure"
+#line 12955 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13052,7 +13058,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13055 "configure"
+#line 13061 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13291,8 +13297,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 68aaf94ea14e10a882629969ee33658c9cbb8228..27e82754b79a29b7f097e382f42bb8e6dae4a562 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index cea6a42b666008a2e2b67f8fde2bb40bf5eaef7d..66fcce7beee2ccfa3348c2e8cc9dc17da99796af 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index f4d7710f7cb4fab2b07914ff497d02891bd9e697..6c5b6411bbb7f7a34143a268bd8071ea1a2b89fa 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-13  Mike Frysinger  <vapier@gentoo.org>
 
        * compile.c (memory_size): Move definition to top of file.
index 5254a367857ab34361f05d0e0d79907e68954f9f..a541b14bd814bc76ba0332274ca304e813e06da3 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 25a2c33fede0d624d2a3ab47571536cbd6d42b2e..60b16c83b6eba23527e01f2e004644cc1d7052d3 100644 (file)
@@ -1,3 +1,8 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure.ac: Delete bfd/configure.host sourcing.
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * configure.ac (AC_CHECK_HEADERS): Delete stdlib.h, string.h, and
index 877a23de97d1a4ce54b0b19c31fc8742fa1963df..195df5c9a6db88eef4a50a29a43de8b07b910b99 100755 (executable)
@@ -5023,8 +5023,6 @@ ac_script='s/[\\$]/&&/g;s/;s,x,x,$//'
 program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"`
 
 
-. ${srcdir}/../../bfd/configure.host
-
 ac_config_headers="$ac_config_headers config.h:config.in"
 
 
index 12536c26be4eb8923acdbaf79384861c7929ca84..7217bd4a99eba8511c264dd0b98a26cfd26bf294 100644 (file)
@@ -28,8 +28,6 @@ fi
 AC_CANONICAL_SYSTEM
 AC_ARG_PROGRAM
 
-. ${srcdir}/../../bfd/configure.host
-
 AC_CONFIG_HEADER(config.h:config.in)
 
 # NB: You can assume C11 headers exist.
index 79e49390575e0415234cefd2929c2a2e5c44fd35..d5816bf2a36e3a0f6101f62d2487c32ed0c1cbac 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-30  Mike Frysinger  <vapier@gentoo.org>
 
        * sim-if.c (sim_open): Delete STATE_WATCHPOINTS (sd)->sizeof_pc.
index cd7acea00dce4d18386bc7f3036f37a06449a935..517a5369c20a043e738ac5a7d64ff28af389a8b6 100755 (executable)
@@ -684,7 +684,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6919,7 +6918,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
@@ -8579,7 +8586,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12943,7 +12949,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12946 "configure"
+#line 12952 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13049,7 +13055,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13052 "configure"
+#line 13058 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13288,8 +13294,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 0c93128195d9839ac2cf82d27867dddfdfa4ac71..75bdc5473c6f9f15ff2544415f620adf79ab7b5f 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * configure.ac: Call SIM_AC_OPTION_WARNINGS.
index 8f5aae6ef26d11d6c6f6150dec38b532bc87e166..cb55c96c7e91b895de7fe97b54de1bd2081df69d 100755 (executable)
@@ -684,7 +684,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6919,7 +6918,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
@@ -8579,7 +8586,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12943,7 +12949,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12946 "configure"
+#line 12952 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13049,7 +13055,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13052 "configure"
+#line 13058 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13288,8 +13294,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 1d609ca9d8486abe42ead0aa06beddd4fb4c32b6..ed4e0727efe2d2578a014bfd9104006b8553fc11 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index 407dd1f624a913b069b2583071e5a17cc90e0ce9..faf0c3d6cf8b152b50be10465eaea12fe79e7953 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6898,7 +6897,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
@@ -8558,7 +8565,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12922,7 +12928,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12925 "configure"
+#line 12931 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13028,7 +13034,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13031 "configure"
+#line 13037 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13267,8 +13273,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 73e00643416dff633270cff8361658dbf651c209..b3b5823c5108d5f44d1b5885e9d655d993b4d7ec 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-30  Mike Frysinger  <vapier@gentoo.org>
 
        * sim-if.c (sim_open): Delete STATE_WATCHPOINTS (sd)->sizeof_pc.
index efcaed96fdfb665c5a32bb34d57a00c32308ca4d..324122488c40faba73bc4f1d5c9a698234526d82 100755 (executable)
@@ -686,7 +686,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6921,7 +6920,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
@@ -8581,7 +8588,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12945,7 +12951,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12948 "configure"
+#line 12954 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13051,7 +13057,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13054 "configure"
+#line 13060 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13290,8 +13296,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 0063e8e8b46480b9851ea67fb6056257865db241..bb19cdfa126a02622b28d2cc3044fc6b96fa119c 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-30  Mike Frysinger  <vapier@gentoo.org>
 
        * dv-m68hc11tim.c (cycle_to_string): Change llu to PRIi64.
index 8b6ba08c21e0e1fe00b903e3b9ee94f51db63149..b3622aad5e7c9be95be9bf5321f4ebf778a5d8c5 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -8576,7 +8575,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12940,7 +12938,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12943 "configure"
+#line 12941 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13046,7 +13044,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13049 "configure"
+#line 13047 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13285,8 +13283,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 041bd516b99ca73161be2c84d8474fdbb1d86d26..748783fabb8587692c13cd639bdd209a28284619 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index e7811297111b766e39e8373e6e5950f22b81f046..723b6ab71d1b6923ca83cc743de9cf08a984bf0c 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index db8307d18cd58c0b7aac47b6887a5a1b01debf44..6c2d4fc9e6e9b2aa005bde71c64120455b0c7c06 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index 51dcea114d7fd550befb0b1d1f699fb99f6ecb56..4e1d2cbca5772b8fcff6b56620e4f9562d9170b8 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 068d3067e38ef7292ba2d6dced7c1fa9f4b303c5..1fb767c43b454abc1f82af4c698a832d031f4044 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-30  Mike Frysinger  <vapier@gentoo.org>
 
        * interp.c (sim_open): Delete STATE_WATCHPOINTS (sd)->sizeof_pc.
index 455800153618d2147f301e0640876cad2a5d8db0..b088672d0531a472ef68a111820feb16feb56714 100755 (executable)
@@ -694,7 +694,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6938,7 +6937,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
@@ -8598,7 +8605,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12962,7 +12968,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12965 "configure"
+#line 12971 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13068,7 +13074,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13071 "configure"
+#line 13077 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13307,8 +13313,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 45fdcad8500b877336c8bf0848f05329c7b8352c..44f8cbed4f9dc39b6542c4f63c55a9628ba6f047 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-30  Mike Frysinger  <vapier@gentoo.org>
 
        * interp.c (sim_open): Delete STATE_WATCHPOINTS (sd)->sizeof_pc.
index 6604a3a629731ff29ff6175e1890d7eea2f8c1b0..61e69a388ff678f363c051715f87d780111c3158 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6914,7 +6913,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
@@ -8574,7 +8581,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12938,7 +12944,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12941 "configure"
+#line 12947 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13044,7 +13050,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13047 "configure"
+#line 13053 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13283,8 +13289,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index d85c578413554175afa4103784f156c74ce4bc7e..193933dc6538ea2aa1db9fcc4afb81f491f5619a 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-31  Mike Frysinger  <vapier@gentoo.org>
 
        * interp.c (sim_create_inferior): Add const to avp.
index 1cf6e5bc547bd1ccbfaa4a2c7b1b1685fca2bd1f..229651dce5c69f1ac3fe76ca579f423296a8e761 100755 (executable)
@@ -682,7 +682,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -8574,7 +8573,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12938,7 +12936,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12941 "configure"
+#line 12939 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13044,7 +13042,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13047 "configure"
+#line 13045 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13283,8 +13281,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 974e59ea34488f011e782e6c59b63e2d603b71a3..8c003766d7c08e1fbb80f87daeeb00fb7cb38509 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index 654492c80b2e87ba076416f2c16a6cb4f689ba77..bff52ec928714417e7dd199b7bbbe16d678139d8 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 4d74882e73fbda79efc4f4838158bbd4f8793ada..a7a7130b8b62e00d849d747b3658dde8db607439 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-31  Mike Frysinger  <vapier@gentoo.org>
 
        * decode.c (or1k32bf_decode): Change TRACE_EXTRACT to
index 7fbd748c8e0c3a3076a3d56f9279e35fcce21824..d5ecb67a8de3d0468f117f901053a32f369e3ba4 100755 (executable)
@@ -684,7 +684,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -8586,7 +8585,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12950,7 +12948,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12953 "configure"
+#line 12951 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13056,7 +13054,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13059 "configure"
+#line 13057 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13295,8 +13293,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 1086ea927bca16a032c2f66f6ad4f49337f4458a..6de9e2d8e3a5c79c101a6e91c28deacd4a223865 100644 (file)
@@ -1,3 +1,12 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * Makefile.in (STD_CFLAGS): Delete $(HDEFINES) $(TDEFINES).
+       (NOWARN_CFLAGS): Likewise.
+       (HDEFINES, TDEFINES): Delete.
+       * configure.ac: Delete AC_SUBST(HDEFINES) and bfd/configure.host
+       sourcing.
+       * configure: Regenerate.
+
 2021-01-19  Mike Frysinger  <vapier@gentoo.org>
 
        * Makefile.in (version.c): Simplifiy args and call move-if-change.
index 8c62f44297eb5376740cccbd8b5c4f51a9fc9ba4..3479e7a45d2d1d1c4e6e478f00dedd9c2f1a2410 100644 (file)
@@ -103,8 +103,8 @@ CONFIG_CFLAGS = \
   $(DEVZERO_CFLAGS)
 SIM_FPU_CFLAGS = @sim_fpu_cflags@
 
-STD_CFLAGS     = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARNING_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $(INTL_CFLAGS) $(SIM_FPU_CFLAGS)
-NOWARN_CFLAGS  = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES)  $(SIM_FPU_CFLAGS)
+STD_CFLAGS     = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARNING_CFLAGS) $(INCLUDES) $(INTL_CFLAGS) $(SIM_FPU_CFLAGS)
+NOWARN_CFLAGS  = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(INCLUDES) $(SIM_FPU_CFLAGS)
 BUILD_CFLAGS   = $(CFLAGS_FOR_BUILD) $(INCLUDES) $(WARNING_CFLAGS)
 
 BUILD_LDFLAGS  =
@@ -121,8 +121,6 @@ IGEN_SMP = @sim_igen_smp@
 IGEN_LINE_NR = @sim_line_nr@
 DGEN_FLAGS = @sim_switch@
 
-HDEFINES = @HDEFINES@
-TDEFINES =
 IGEN_FLAGS = \
        $(IGEN_DECODE_MECHANISM) \
        $(IGEN_DUPLICATE) \
index 108c92a44bf83e802948e0b51229b77b38dcea8b..594706dd000b767cb6135d3a9923500c4822193c 100755 (executable)
@@ -652,7 +652,6 @@ sim_line_nr
 sim_warnings
 RANLIB
 AR
-HDEFINES
 CFLAGS_FOR_BUILD
 CC_FOR_BUILD
 LIBOBJS
@@ -6899,8 +6898,6 @@ fi
   fi
 
 
-. ${srcdir}/../../bfd/configure.host
-
 case ${host} in
   *mingw32*)
 
@@ -7761,7 +7758,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
index 9bc10570f038cea538e2cdc0df08a927cb6a3955..e30f4048bcde46a8b178b6f47ecd12239f9a1a86 100644 (file)
@@ -626,8 +626,6 @@ AM_ZLIB
 # BFD uses libdl when when plugins enabled.
 AC_PLUGINS
 
-. ${srcdir}/../../bfd/configure.host
-
 case ${host} in
   *mingw32*)
     AC_DEFINE(USE_WIN32API, 1,
@@ -835,7 +833,6 @@ AC_EXEEXT
 AC_SUBST(CC_FOR_BUILD)
 AC_SUBST(CFLAGS_FOR_BUILD)
 AC_SUBST(CFLAGS)
-AC_SUBST(HDEFINES)
 AR=${AR-ar}
 AC_SUBST(AR)
 AC_PROG_RANLIB
index ce8ca2a0daddeba171527f0837dca514fd11fa16..ea8194f5cd42088a4cfb6f4c471b5865c0efe519 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index 3eb9c8745725fd36097c5ad03939fa7efd1c48eb..74ecc7c71484d7a6be5026d220354eeaaed5a9d6 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 9eaffee34421ad0d1efb664dc8fa6f216ac485c2..79e35e462d8b3a1e9951f0cefff5499001cbb028 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-02-04  Mike Frysinger  <vapier@gentoo.org>
 
        * sim-main.c: Include gdb/sim-riscv.h.
index 8236dc35c12a1eaf93a21d3b89c1166f474764b0..4c14105d5e10c8a4ff202d697ed9f2461749f17c 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -8578,7 +8577,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12942,7 +12940,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12945 "configure"
+#line 12943 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13048,7 +13046,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13051 "configure"
+#line 13049 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13287,8 +13285,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index ddce2366f25040b9637fc8822955dbcd7beae640..2aa6a9bc91a19384020ba6e0341c736ce37bf589 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * configure.ac: Call SIM_AC_OPTION_WARNINGS.
index 842091b27775485b92736c74ece169bc5b81bfc1..498ff92b5d30b3e2070c0dbea3d9f83d68e82fc4 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6898,7 +6897,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
@@ -8558,7 +8565,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12922,7 +12928,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12925 "configure"
+#line 12931 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13028,7 +13034,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13031 "configure"
+#line 13037 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13267,8 +13273,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 684c38a21803a6f5eb04370eef3962c123d278a0..d453bed46ed045c10b6838dc26e04c5c9a3be3f1 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * configure.ac: Call SIM_AC_OPTION_WARNINGS.
index 3969c67038011d79df98b8e4dd0ba3e5a73a64c4..85daaa92b856a9e3cb1f0f751f2c5172cf8ac1c7 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6903,7 +6902,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
@@ -8563,7 +8570,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12927,7 +12933,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12930 "configure"
+#line 12936 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13033,7 +13039,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13036 "configure"
+#line 13042 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13272,8 +13278,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index c3a103abe9b66fef97bd336d17ffdb7f6b854eed..01aeaaf3f6131d6486bb74762661ae37341ed270 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-11  Mike Frysinger  <vapier@gentoo.org>
 
        * config.in, configure: Regenerate.
index e7811297111b766e39e8373e6e5950f22b81f046..723b6ab71d1b6923ca83cc743de9cf08a984bf0c 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -6905,7 +6904,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
@@ -8565,7 +8572,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12929,7 +12935,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12932 "configure"
+#line 12938 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13035,7 +13041,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13038 "configure"
+#line 13044 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13274,8 +13280,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-
 
 
 
index 6be68b3c26248414ba48d2d88df9386526801267..5085030e67df5f8514fe814b388eec55e19a8dd9 100644 (file)
@@ -1,3 +1,7 @@
+2021-02-06  Mike Frysinger  <vapier@gentoo.org>
+
+       * configure: Regenerate.
+
 2021-01-31  Mike Frysinger  <vapier@gentoo.org>
 
        * simops.c: Include stdlib.h.
index d0f21da30ff097d9cb5938ecf322a4399041aa6f..971642edc813270810cedbe1ba18b0d2202dd2e0 100755 (executable)
@@ -681,7 +681,6 @@ PACKAGE
 C_DIALECT
 RANLIB
 AR
-HDEFINES
 CC_FOR_BUILD
 INSTALL_DATA
 INSTALL_SCRIPT
@@ -8579,7 +8578,6 @@ fi
 
 
 
-
 AR=${AR-ar}
 
 if test -n "$ac_tool_prefix"; then
@@ -12943,7 +12941,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 12946 "configure"
+#line 12944 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13049,7 +13047,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 13052 "configure"
+#line 13050 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -13288,8 +13286,6 @@ CC="$lt_save_CC"
 
 
 
-. ${srcdir}/../../bfd/configure.host
-