aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-05-01 17:16:23 -0400
committerMike Frysinger <vapier@gentoo.org>2021-05-04 08:22:07 -0400
commitaa0fca163e1736e158fd3922cbbc31b85c9c7df7 (patch)
treeece0136b2492db8771756b3214a5fa2cab121f63
parent5ee0bc23a68fe2a6a7717b31fda1db878b2c9764 (diff)
downloadfsf-binutils-gdb-aa0fca163e1736e158fd3922cbbc31b85c9c7df7.zip
fsf-binutils-gdb-aa0fca163e1736e158fd3922cbbc31b85c9c7df7.tar.gz
fsf-binutils-gdb-aa0fca163e1736e158fd3922cbbc31b85c9c7df7.tar.bz2
sim: add support for build-time ar & ranlib
This is needed when building for a target whose ar & ranlib are incompatible with the current build system. For example, building for Windows on a Linux system. Then manually import the automake rule for libigen.a, but tweak the tool variables to use the FOR_BUILD variants.
-rw-r--r--sim/ChangeLog6
-rw-r--r--sim/Makefile.in16
-rw-r--r--sim/aarch64/ChangeLog4
-rwxr-xr-xsim/aarch64/configure12
-rw-r--r--sim/arm/ChangeLog4
-rwxr-xr-xsim/arm/configure12
-rw-r--r--sim/avr/ChangeLog4
-rwxr-xr-xsim/avr/configure12
-rw-r--r--sim/bfin/ChangeLog4
-rwxr-xr-xsim/bfin/configure12
-rw-r--r--sim/bpf/ChangeLog4
-rwxr-xr-xsim/bpf/configure12
-rwxr-xr-xsim/configure8
-rw-r--r--sim/cr16/ChangeLog4
-rwxr-xr-xsim/cr16/configure12
-rw-r--r--sim/cris/ChangeLog4
-rwxr-xr-xsim/cris/configure12
-rw-r--r--sim/d10v/ChangeLog4
-rwxr-xr-xsim/d10v/configure12
-rw-r--r--sim/erc32/ChangeLog4
-rwxr-xr-xsim/erc32/configure12
-rw-r--r--sim/example-synacor/ChangeLog4
-rwxr-xr-xsim/example-synacor/configure12
-rw-r--r--sim/frv/ChangeLog4
-rwxr-xr-xsim/frv/configure12
-rw-r--r--sim/ft32/ChangeLog4
-rwxr-xr-xsim/ft32/configure12
-rw-r--r--sim/h8300/ChangeLog4
-rwxr-xr-xsim/h8300/configure12
-rw-r--r--sim/igen/ChangeLog4
-rw-r--r--sim/igen/local.mk6
-rw-r--r--sim/iq2000/ChangeLog4
-rwxr-xr-xsim/iq2000/configure12
-rw-r--r--sim/lm32/ChangeLog4
-rwxr-xr-xsim/lm32/configure12
-rw-r--r--sim/m32c/ChangeLog4
-rwxr-xr-xsim/m32c/configure12
-rw-r--r--sim/m32r/ChangeLog4
-rwxr-xr-xsim/m32r/configure12
-rw-r--r--sim/m4/sim_ac_toolchain.m46
-rw-r--r--sim/m68hc11/ChangeLog4
-rwxr-xr-xsim/m68hc11/configure12
-rw-r--r--sim/mcore/ChangeLog4
-rwxr-xr-xsim/mcore/configure12
-rw-r--r--sim/microblaze/ChangeLog4
-rwxr-xr-xsim/microblaze/configure12
-rw-r--r--sim/mips/ChangeLog4
-rwxr-xr-xsim/mips/configure12
-rw-r--r--sim/mn10300/ChangeLog4
-rwxr-xr-xsim/mn10300/configure12
-rw-r--r--sim/moxie/ChangeLog4
-rwxr-xr-xsim/moxie/configure12
-rw-r--r--sim/msp430/ChangeLog4
-rwxr-xr-xsim/msp430/configure12
-rw-r--r--sim/or1k/ChangeLog4
-rwxr-xr-xsim/or1k/configure12
-rw-r--r--sim/pru/ChangeLog4
-rwxr-xr-xsim/pru/configure12
-rw-r--r--sim/riscv/ChangeLog4
-rwxr-xr-xsim/riscv/configure12
-rw-r--r--sim/rl78/ChangeLog4
-rwxr-xr-xsim/rl78/configure12
-rw-r--r--sim/rx/ChangeLog4
-rwxr-xr-xsim/rx/configure12
-rw-r--r--sim/sh/ChangeLog4
-rwxr-xr-xsim/sh/configure12
-rw-r--r--sim/v850/ChangeLog4
-rwxr-xr-xsim/v850/configure12
68 files changed, 476 insertions, 66 deletions
diff --git a/sim/ChangeLog b/sim/ChangeLog
index 8f0e1d5..a26cae9 100644
--- a/sim/ChangeLog
+++ b/sim/ChangeLog
@@ -1,3 +1,9 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * m4/sim_ac_toolchain.m4 (SIM_AC_TOOLCHAIN): Define AR_FOR_BUILD and
+ RANLIB_FOR_BUILD.
+ * configure, Makefile.in: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* m4/sim_ac_common.m4 (AC_CHECK_FUNCS_ONCE): Add strsignal.
diff --git a/sim/Makefile.in b/sim/Makefile.in
index f2f5bfa..890adab 100644
--- a/sim/Makefile.in
+++ b/sim/Makefile.in
@@ -564,6 +564,7 @@ ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
+AR_FOR_BUILD = @AR_FOR_BUILD@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
@@ -608,6 +609,7 @@ PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
+RANLIB_FOR_BUILD = @RANLIB_FOR_BUILD@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SIM_PRIMARY_TARGET = @SIM_PRIMARY_TARGET@
@@ -809,10 +811,10 @@ igen/gen-engine.$(OBJEXT): igen/$(am__dirstamp) \
igen/gen.$(OBJEXT): igen/$(am__dirstamp) \
igen/$(DEPDIR)/$(am__dirstamp)
-igen/libigen.a: $(igen_libigen_a_OBJECTS) $(igen_libigen_a_DEPENDENCIES) $(EXTRA_igen_libigen_a_DEPENDENCIES) igen/$(am__dirstamp)
- $(AM_V_at)-rm -f igen/libigen.a
- $(AM_V_AR)$(igen_libigen_a_AR) igen/libigen.a $(igen_libigen_a_OBJECTS) $(igen_libigen_a_LIBADD)
- $(AM_V_at)$(RANLIB) igen/libigen.a
+@SIM_ENABLE_IGEN_FALSE@igen/libigen.a: $(igen_libigen_a_OBJECTS) $(igen_libigen_a_DEPENDENCIES) $(EXTRA_igen_libigen_a_DEPENDENCIES) igen/$(am__dirstamp)
+@SIM_ENABLE_IGEN_FALSE@ $(AM_V_at)-rm -f igen/libigen.a
+@SIM_ENABLE_IGEN_FALSE@ $(AM_V_AR)$(igen_libigen_a_AR) igen/libigen.a $(igen_libigen_a_OBJECTS) $(igen_libigen_a_LIBADD)
+@SIM_ENABLE_IGEN_FALSE@ $(AM_V_at)$(RANLIB) igen/libigen.a
clean-checkPROGRAMS:
-test -z "$(check_PROGRAMS)" || rm -f $(check_PROGRAMS)
@@ -1405,6 +1407,12 @@ nltvals:
# Alias for developers.
@SIM_ENABLE_IGEN_TRUE@igen: igen/igen$(EXEEXT)
+# These rules are copied from automake, but tweaked to use FOR_BUILD variables.
+@SIM_ENABLE_IGEN_TRUE@igen/libigen.a: $(igen_libigen_a_OBJECTS) $(igen_libigen_a_DEPENDENCIES) $(EXTRA_igen_libigen_a_DEPENDENCIES) igen/$(am__dirstamp)
+@SIM_ENABLE_IGEN_TRUE@ $(AM_V_at)-rm -f $@
+@SIM_ENABLE_IGEN_TRUE@ $(AM_V_AR)$(AR_FOR_BUILD) $(ARFLAGS) $@ $(igen_libigen_a_OBJECTS) $(igen_libigen_a_LIBADD)
+@SIM_ENABLE_IGEN_TRUE@ $(AM_V_at)$(RANLIB_FOR_BUILD) $@
+
@SIM_ENABLE_IGEN_TRUE@igen/igen$(EXEEXT): $(igen_igen_OBJECTS) $(igen_igen_DEPENDENCIES) igen/$(am__dirstamp)
@SIM_ENABLE_IGEN_TRUE@ $(AM_V_CCLD)$(LINK_FOR_BUILD) $(igen_igen_OBJECTS) $(igen_igen_LDADD)
diff --git a/sim/aarch64/ChangeLog b/sim/aarch64/ChangeLog
index 9d739ff..fba3984 100644
--- a/sim/aarch64/ChangeLog
+++ b/sim/aarch64/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/aarch64/configure b/sim/aarch64/configure
index 37aa067..28044c9 100755
--- a/sim/aarch64/configure
+++ b/sim/aarch64/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/arm/ChangeLog b/sim/arm/ChangeLog
index 54712e3..27f651a 100644
--- a/sim/arm/ChangeLog
+++ b/sim/arm/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-03 Simon Marchi <simon.marchi@polymtl.ca>
* armdefs.h (ARMul_ConsolePrint): Use format attribute.
diff --git a/sim/arm/configure b/sim/arm/configure
index 2b83877..1c2b06b 100755
--- a/sim/arm/configure
+++ b/sim/arm/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/avr/ChangeLog b/sim/avr/ChangeLog
index 47a9800..646f318 100644
--- a/sim/avr/ChangeLog
+++ b/sim/avr/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/avr/configure b/sim/avr/configure
index 6bb27f7f..1f2c9cd 100755
--- a/sim/avr/configure
+++ b/sim/avr/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/bfin/ChangeLog b/sim/bfin/ChangeLog
index 832effc..b5f70d2 100644
--- a/sim/bfin/ChangeLog
+++ b/sim/bfin/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-03 Simon Marchi <simon.marchi@polymtl.ca>
* interp.c (sim_open): Adjust format string specifier.
diff --git a/sim/bfin/configure b/sim/bfin/configure
index af65c13..a930031 100755
--- a/sim/bfin/configure
+++ b/sim/bfin/configure
@@ -691,7 +691,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6884,11 +6886,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6897,6 +6903,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11222,7 +11230,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11225 "configure"
+#line 11233 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11328,7 +11336,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11331 "configure"
+#line 11339 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/bpf/ChangeLog b/sim/bpf/ChangeLog
index 4ccb9a4..359cabb 100644
--- a/sim/bpf/ChangeLog
+++ b/sim/bpf/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/bpf/configure b/sim/bpf/configure
index e7a91d1..2d30e7c 100755
--- a/sim/bpf/configure
+++ b/sim/bpf/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6864,11 +6866,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6877,6 +6883,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11202,7 +11210,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11205 "configure"
+#line 11213 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11308,7 +11316,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11311 "configure"
+#line 11319 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/configure b/sim/configure
index e90133a..eb0776c 100755
--- a/sim/configure
+++ b/sim/configure
@@ -673,7 +673,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -3888,11 +3890,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -3901,6 +3907,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
diff --git a/sim/cr16/ChangeLog b/sim/cr16/ChangeLog
index ebf601f..886ce9b 100644
--- a/sim/cr16/ChangeLog
+++ b/sim/cr16/ChangeLog
@@ -1,5 +1,9 @@
2021-05-04 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
* interp.c (sim_create_inferior): Use BFD_VMA_FMT and drop cast.
2021-05-01 Mike Frysinger <vapier@gentoo.org>
diff --git a/sim/cr16/configure b/sim/cr16/configure
index 9886f36..d862891 100755
--- a/sim/cr16/configure
+++ b/sim/cr16/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/cris/ChangeLog b/sim/cris/ChangeLog
index 49db6ef..4cad5c8 100644
--- a/sim/cris/ChangeLog
+++ b/sim/cris/ChangeLog
@@ -1,5 +1,9 @@
2021-05-04 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
* sim-if.c (cris_load_elf_file): Use BFD_VMA_FMT
(cris_handle_interpreter): Likewise. Delete phaddr.
(sim_open): Use PRIx32.
diff --git a/sim/cris/configure b/sim/cris/configure
index 798e9a5..d791a3d 100755
--- a/sim/cris/configure
+++ b/sim/cris/configure
@@ -688,7 +688,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6865,11 +6867,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6878,6 +6884,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11203,7 +11211,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11206 "configure"
+#line 11214 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11309,7 +11317,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11312 "configure"
+#line 11320 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/d10v/ChangeLog b/sim/d10v/ChangeLog
index bbf97d2..cc70f28 100644
--- a/sim/d10v/ChangeLog
+++ b/sim/d10v/ChangeLog
@@ -1,5 +1,9 @@
2021-05-04 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
* d10v_sim.h (decode_pc): Delete.
* interp.c (sim_create_inferior): Use BFD_VMA_FMT.
diff --git a/sim/d10v/configure b/sim/d10v/configure
index 177c394..2d1e87f 100755
--- a/sim/d10v/configure
+++ b/sim/d10v/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/erc32/ChangeLog b/sim/erc32/ChangeLog
index a6b142a..67a763b 100644
--- a/sim/erc32/ChangeLog
+++ b/sim/erc32/ChangeLog
@@ -1,5 +1,9 @@
2021-05-04 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
* func.c (bfd_load): Use BFD_VMA_FMT.
2021-05-01 Mike Frysinger <vapier@gentoo.org>
diff --git a/sim/erc32/configure b/sim/erc32/configure
index bbcec31..0d2327f 100755
--- a/sim/erc32/configure
+++ b/sim/erc32/configure
@@ -692,7 +692,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6847,11 +6849,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6860,6 +6866,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11185,7 +11193,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11188 "configure"
+#line 11196 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11291,7 +11299,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11294 "configure"
+#line 11302 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/example-synacor/ChangeLog b/sim/example-synacor/ChangeLog
index f00fe52..f790f92 100644
--- a/sim/example-synacor/ChangeLog
+++ b/sim/example-synacor/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/example-synacor/configure b/sim/example-synacor/configure
index 6b43a27..e2f34d1 100755
--- a/sim/example-synacor/configure
+++ b/sim/example-synacor/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/frv/ChangeLog b/sim/frv/ChangeLog
index 1dd18a1..0c39d1a 100644
--- a/sim/frv/ChangeLog
+++ b/sim/frv/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/frv/configure b/sim/frv/configure
index 102d3b6..73f3066 100755
--- a/sim/frv/configure
+++ b/sim/frv/configure
@@ -689,7 +689,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6865,11 +6867,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6878,6 +6884,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11203,7 +11211,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11206 "configure"
+#line 11214 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11309,7 +11317,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11312 "configure"
+#line 11320 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/ft32/ChangeLog b/sim/ft32/ChangeLog
index d0e5bec..9389818 100644
--- a/sim/ft32/ChangeLog
+++ b/sim/ft32/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/ft32/configure b/sim/ft32/configure
index cfae5ea..abb6f31 100755
--- a/sim/ft32/configure
+++ b/sim/ft32/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/h8300/ChangeLog b/sim/h8300/ChangeLog
index 0a67f6f..c922aaf 100644
--- a/sim/h8300/ChangeLog
+++ b/sim/h8300/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/h8300/configure b/sim/h8300/configure
index 18312da..2627483 100755
--- a/sim/h8300/configure
+++ b/sim/h8300/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6852,11 +6854,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6865,6 +6871,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11190,7 +11198,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11193 "configure"
+#line 11201 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11296,7 +11304,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11299 "configure"
+#line 11307 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/igen/ChangeLog b/sim/igen/ChangeLog
index 84b9e67..aebd251 100644
--- a/sim/igen/ChangeLog
+++ b/sim/igen/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * local.mk (igen/libigen.a): New target.
+
2021-05-02 Mike Frysinger <vapier@gentoo.org>
* lf.h: Include ansidecl.h.
diff --git a/sim/igen/local.mk b/sim/igen/local.mk
index 10f0f6d..f224572 100644
--- a/sim/igen/local.mk
+++ b/sim/igen/local.mk
@@ -48,6 +48,12 @@ noinst_LIBRARIES += %D%/libigen.a
%C%_igen_SOURCES = %D%/igen.c
%C%_igen_LDADD = %D%/libigen.a
+# These rules are copied from automake, but tweaked to use FOR_BUILD variables.
+igen/libigen.a: $(igen_libigen_a_OBJECTS) $(igen_libigen_a_DEPENDENCIES) $(EXTRA_igen_libigen_a_DEPENDENCIES) igen/$(am__dirstamp)
+ $(AM_V_at)-rm -f $@
+ $(AM_V_AR)$(AR_FOR_BUILD) $(ARFLAGS) $@ $(igen_libigen_a_OBJECTS) $(igen_libigen_a_LIBADD)
+ $(AM_V_at)$(RANLIB_FOR_BUILD) $@
+
%D%/igen$(EXEEXT): $(%C%_igen_OBJECTS) $(%C%_igen_DEPENDENCIES) %D%/$(am__dirstamp)
$(AM_V_CCLD)$(LINK_FOR_BUILD) $(%C%_igen_OBJECTS) $(%C%_igen_LDADD)
diff --git a/sim/iq2000/ChangeLog b/sim/iq2000/ChangeLog
index 6798553..550be28 100644
--- a/sim/iq2000/ChangeLog
+++ b/sim/iq2000/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/iq2000/configure b/sim/iq2000/configure
index ecefb97..6dd888c 100755
--- a/sim/iq2000/configure
+++ b/sim/iq2000/configure
@@ -688,7 +688,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6862,11 +6864,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6875,6 +6881,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11200,7 +11208,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11203 "configure"
+#line 11211 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11306,7 +11314,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11309 "configure"
+#line 11317 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/lm32/ChangeLog b/sim/lm32/ChangeLog
index 504b72f..eac37de 100644
--- a/sim/lm32/ChangeLog
+++ b/sim/lm32/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/lm32/configure b/sim/lm32/configure
index 855a460..1924db7 100755
--- a/sim/lm32/configure
+++ b/sim/lm32/configure
@@ -688,7 +688,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6862,11 +6864,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6875,6 +6881,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11200,7 +11208,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11203 "configure"
+#line 11211 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11306,7 +11314,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11309 "configure"
+#line 11317 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/m32c/ChangeLog b/sim/m32c/ChangeLog
index df06256..a7351d6 100644
--- a/sim/m32c/ChangeLog
+++ b/sim/m32c/ChangeLog
@@ -1,5 +1,9 @@
2021-05-04 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
* load.c (m32c_load): Use BFD_VMA_FMT and drop casts.
2021-05-02 Mike Frysinger <vapier@gentoo.org>
diff --git a/sim/m32c/configure b/sim/m32c/configure
index efb30d5..4d5f524 100755
--- a/sim/m32c/configure
+++ b/sim/m32c/configure
@@ -689,7 +689,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6849,11 +6851,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6862,6 +6868,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11187,7 +11195,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11190 "configure"
+#line 11198 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11293,7 +11301,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11296 "configure"
+#line 11304 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/m32r/ChangeLog b/sim/m32r/ChangeLog
index b0aa17f..e247deb 100644
--- a/sim/m32r/ChangeLog
+++ b/sim/m32r/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/m32r/configure b/sim/m32r/configure
index 75efb5c..ded50a2 100755
--- a/sim/m32r/configure
+++ b/sim/m32r/configure
@@ -690,7 +690,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6864,11 +6866,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6877,6 +6883,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11202,7 +11210,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11205 "configure"
+#line 11213 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11308,7 +11316,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11311 "configure"
+#line 11319 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/m4/sim_ac_toolchain.m4 b/sim/m4/sim_ac_toolchain.m4
index 9cf7027..2f1a428 100644
--- a/sim/m4/sim_ac_toolchain.m4
+++ b/sim/m4/sim_ac_toolchain.m4
@@ -26,15 +26,21 @@ AC_PROG_INSTALL
dnl Setup toolchain settings for build-time tools..
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
+AC_SUBST(AR_FOR_BUILD)
AC_SUBST(CC_FOR_BUILD)
+AC_SUBST(RANLIB_FOR_BUILD)
AC_SUBST(CFLAGS_FOR_BUILD)
AC_SUBST(LDFLAGS_FOR_BUILD)
diff --git a/sim/m68hc11/ChangeLog b/sim/m68hc11/ChangeLog
index a9b6408..7728342 100644
--- a/sim/m68hc11/ChangeLog
+++ b/sim/m68hc11/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure
index e876c06..32a1570 100755
--- a/sim/m68hc11/configure
+++ b/sim/m68hc11/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/mcore/ChangeLog b/sim/mcore/ChangeLog
index 9151895..d028e2b 100644
--- a/sim/mcore/ChangeLog
+++ b/sim/mcore/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/mcore/configure b/sim/mcore/configure
index 8c995cf..94c4f26 100755
--- a/sim/mcore/configure
+++ b/sim/mcore/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/microblaze/ChangeLog b/sim/microblaze/ChangeLog
index 5310e96..510cdde 100644
--- a/sim/microblaze/ChangeLog
+++ b/sim/microblaze/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/microblaze/configure b/sim/microblaze/configure
index 2b83877..1c2b06b 100755
--- a/sim/microblaze/configure
+++ b/sim/microblaze/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/mips/ChangeLog b/sim/mips/ChangeLog
index 5eb6ea7..62b3b4c 100644
--- a/sim/mips/ChangeLog
+++ b/sim/mips/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* cp1.c (store_fcr): Mark static.
diff --git a/sim/mips/configure b/sim/mips/configure
index f7afb05..084e22f 100755
--- a/sim/mips/configure
+++ b/sim/mips/configure
@@ -697,7 +697,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6881,11 +6883,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6894,6 +6900,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11219,7 +11227,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11222 "configure"
+#line 11230 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11325,7 +11333,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11328 "configure"
+#line 11336 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/mn10300/ChangeLog b/sim/mn10300/ChangeLog
index 04a2ccb..8ff717f 100644
--- a/sim/mn10300/ChangeLog
+++ b/sim/mn10300/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/mn10300/configure b/sim/mn10300/configure
index c10fb16..7353ac2 100755
--- a/sim/mn10300/configure
+++ b/sim/mn10300/configure
@@ -685,7 +685,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6857,11 +6859,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6870,6 +6876,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11195,7 +11203,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11198 "configure"
+#line 11206 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11301,7 +11309,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11304 "configure"
+#line 11312 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/moxie/ChangeLog b/sim/moxie/ChangeLog
index c85e434..f579ceb 100644
--- a/sim/moxie/ChangeLog
+++ b/sim/moxie/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/moxie/configure b/sim/moxie/configure
index 15e36ee..6636182 100755
--- a/sim/moxie/configure
+++ b/sim/moxie/configure
@@ -688,7 +688,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6852,11 +6854,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6865,6 +6871,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11190,7 +11198,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11193 "configure"
+#line 11201 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11296,7 +11304,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11299 "configure"
+#line 11307 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/msp430/ChangeLog b/sim/msp430/ChangeLog
index 47b2796..acdca73 100644
--- a/sim/msp430/ChangeLog
+++ b/sim/msp430/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/msp430/configure b/sim/msp430/configure
index 6bb27f7f..1f2c9cd 100755
--- a/sim/msp430/configure
+++ b/sim/msp430/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/or1k/ChangeLog b/sim/or1k/ChangeLog
index c79f22a..33f41ff 100644
--- a/sim/or1k/ChangeLog
+++ b/sim/or1k/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/or1k/configure b/sim/or1k/configure
index a4242d3..6ebe791 100755
--- a/sim/or1k/configure
+++ b/sim/or1k/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6864,11 +6866,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6877,6 +6883,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11202,7 +11210,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11205 "configure"
+#line 11213 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11308,7 +11316,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11311 "configure"
+#line 11319 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/pru/ChangeLog b/sim/pru/ChangeLog
index 9f5464a..ac947a3 100644
--- a/sim/pru/ChangeLog
+++ b/sim/pru/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/pru/configure b/sim/pru/configure
index 6bb27f7f..1f2c9cd 100755
--- a/sim/pru/configure
+++ b/sim/pru/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/riscv/ChangeLog b/sim/riscv/ChangeLog
index 0b86f38..c121d48 100644
--- a/sim/riscv/ChangeLog
+++ b/sim/riscv/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/riscv/configure b/sim/riscv/configure
index 68c63a7..6e9c9ab 100755
--- a/sim/riscv/configure
+++ b/sim/riscv/configure
@@ -685,7 +685,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6856,11 +6858,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6869,6 +6875,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11194,7 +11202,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11197 "configure"
+#line 11205 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11300,7 +11308,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11303 "configure"
+#line 11311 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/rl78/ChangeLog b/sim/rl78/ChangeLog
index 1be5181..f0e1631 100644
--- a/sim/rl78/ChangeLog
+++ b/sim/rl78/ChangeLog
@@ -1,5 +1,9 @@
2021-05-04 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
* load.c (rl78_load): Use BFD_VMA_FMT and drop casts.
2021-05-01 Mike Frysinger <vapier@gentoo.org>
diff --git a/sim/rl78/configure b/sim/rl78/configure
index e121014..59cb1ec 100755
--- a/sim/rl78/configure
+++ b/sim/rl78/configure
@@ -689,7 +689,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6844,11 +6846,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6857,6 +6863,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11182,7 +11190,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11185 "configure"
+#line 11193 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11288,7 +11296,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11291 "configure"
+#line 11299 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/rx/ChangeLog b/sim/rx/ChangeLog
index 21a8ff62..9a707e4 100644
--- a/sim/rx/ChangeLog
+++ b/sim/rx/ChangeLog
@@ -1,5 +1,9 @@
2021-05-04 Mike Frysinger <vapier@gentoo.org>
+ * configure: Regenerate.
+
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
* load.c (rx_load): Use BFD_VMA_FMT and drop casts.
2021-05-03 Simon Marchi <simon.marchi@polymtl.ca>
diff --git a/sim/rx/configure b/sim/rx/configure
index 5339a32..87bb429 100755
--- a/sim/rx/configure
+++ b/sim/rx/configure
@@ -689,7 +689,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6849,11 +6851,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6862,6 +6868,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11187,7 +11195,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11190 "configure"
+#line 11198 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11293,7 +11301,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11296 "configure"
+#line 11304 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/sh/ChangeLog b/sim/sh/ChangeLog
index c2875a7..d3c94d9 100644
--- a/sim/sh/ChangeLog
+++ b/sim/sh/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-01 Mike Frysinger <vapier@gentoo.org>
* config.in, configure: Regenerate.
diff --git a/sim/sh/configure b/sim/sh/configure
index 8c995cf..94c4f26 100755
--- a/sim/sh/configure
+++ b/sim/sh/configure
@@ -687,7 +687,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6851,11 +6853,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6864,6 +6870,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11189,7 +11197,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11192 "configure"
+#line 11200 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11295,7 +11303,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11298 "configure"
+#line 11306 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
diff --git a/sim/v850/ChangeLog b/sim/v850/ChangeLog
index 9e5f770..2407ed6 100644
--- a/sim/v850/ChangeLog
+++ b/sim/v850/ChangeLog
@@ -1,3 +1,7 @@
+2021-05-04 Mike Frysinger <vapier@gentoo.org>
+
+ * configure: Regenerate.
+
2021-05-03 Simon Marchi <simon.marchi@polymtl.ca>
* interp.c (sim_open): Adjust format string specifier.
diff --git a/sim/v850/configure b/sim/v850/configure
index 32fd512..d74f002 100755
--- a/sim/v850/configure
+++ b/sim/v850/configure
@@ -685,7 +685,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -6864,11 +6866,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -6877,6 +6883,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2
@@ -11202,7 +11210,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11205 "configure"
+#line 11213 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H
@@ -11308,7 +11316,7 @@ else
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
lt_status=$lt_dlunknown
cat > conftest.$ac_ext <<_LT_EOF
-#line 11311 "configure"
+#line 11319 "configure"
#include "confdefs.h"
#if HAVE_DLFCN_H