From: Mike Frysinger Date: Sat, 1 May 2021 21:16:23 +0000 (-0400) Subject: sim: add support for build-time ar & ranlib X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aa0fca163e1736e158fd3922cbbc31b85c9c7df7;p=binutils-gdb.git 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. --- diff --git a/sim/ChangeLog b/sim/ChangeLog index 8f0e1d54fb6..a26cae9d2d8 100644 --- a/sim/ChangeLog +++ b/sim/ChangeLog @@ -1,3 +1,9 @@ +2021-05-04 Mike Frysinger + + * 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 * m4/sim_ac_common.m4 (AC_CHECK_FUNCS_ONCE): Add strsignal. diff --git a/sim/Makefile.in b/sim/Makefile.in index f2f5bfa9acc..890adab5072 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 9d739ff7422..fba3984299d 100644 --- a/sim/aarch64/ChangeLog +++ b/sim/aarch64/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/aarch64/configure b/sim/aarch64/configure index 37aa067dbe0..28044c96452 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 54712e37766..27f651a9d5d 100644 --- a/sim/arm/ChangeLog +++ b/sim/arm/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-03 Simon Marchi * armdefs.h (ARMul_ConsolePrint): Use format attribute. diff --git a/sim/arm/configure b/sim/arm/configure index 2b838775b0d..1c2b06b60de 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 47a98003a11..646f318b894 100644 --- a/sim/avr/ChangeLog +++ b/sim/avr/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/avr/configure b/sim/avr/configure index 6bb27f7f4a7..1f2c9cdc98f 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 832effc2d0b..b5f70d2bb68 100644 --- a/sim/bfin/ChangeLog +++ b/sim/bfin/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-03 Simon Marchi * interp.c (sim_open): Adjust format string specifier. diff --git a/sim/bfin/configure b/sim/bfin/configure index af65c13cab1..a930031bcf8 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 4ccb9a4af3d..359cabb2438 100644 --- a/sim/bpf/ChangeLog +++ b/sim/bpf/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/bpf/configure b/sim/bpf/configure index e7a91d15c49..2d30e7c1989 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 e90133a2cea..eb0776cc36a 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 ebf601fe9b9..886ce9b469e 100644 --- a/sim/cr16/ChangeLog +++ b/sim/cr16/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-04 Mike Frysinger * interp.c (sim_create_inferior): Use BFD_VMA_FMT and drop cast. diff --git a/sim/cr16/configure b/sim/cr16/configure index 9886f36aaf8..d862891c0fd 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 49db6ef32b2..4cad5c8eb45 100644 --- a/sim/cris/ChangeLog +++ b/sim/cris/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-04 Mike Frysinger * sim-if.c (cris_load_elf_file): Use BFD_VMA_FMT diff --git a/sim/cris/configure b/sim/cris/configure index 798e9a5ba31..d791a3da877 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 bbf97d20318..cc70f28bc35 100644 --- a/sim/d10v/ChangeLog +++ b/sim/d10v/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-04 Mike Frysinger * d10v_sim.h (decode_pc): Delete. diff --git a/sim/d10v/configure b/sim/d10v/configure index 177c394cb75..2d1e87ffead 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 a6b142a6ec2..67a763bf58b 100644 --- a/sim/erc32/ChangeLog +++ b/sim/erc32/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-04 Mike Frysinger * func.c (bfd_load): Use BFD_VMA_FMT. diff --git a/sim/erc32/configure b/sim/erc32/configure index bbcec31f416..0d2327f5b86 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 f00fe5238e9..f790f9232a7 100644 --- a/sim/example-synacor/ChangeLog +++ b/sim/example-synacor/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/example-synacor/configure b/sim/example-synacor/configure index 6b43a276eee..e2f34d1c77d 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 1dd18a1c428..0c39d1a3379 100644 --- a/sim/frv/ChangeLog +++ b/sim/frv/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/frv/configure b/sim/frv/configure index 102d3b6f8fb..73f30660d54 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 d0e5bec927f..9389818f33c 100644 --- a/sim/ft32/ChangeLog +++ b/sim/ft32/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/ft32/configure b/sim/ft32/configure index cfae5eaeb15..abb6f31958b 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 0a67f6f31f8..c922aaf73ba 100644 --- a/sim/h8300/ChangeLog +++ b/sim/h8300/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/h8300/configure b/sim/h8300/configure index 18312dafee1..2627483afbb 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 84b9e67058d..aebd25173da 100644 --- a/sim/igen/ChangeLog +++ b/sim/igen/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * local.mk (igen/libigen.a): New target. + 2021-05-02 Mike Frysinger * lf.h: Include ansidecl.h. diff --git a/sim/igen/local.mk b/sim/igen/local.mk index 10f0f6d227d..f2245727a27 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 6798553d5cf..550be28f654 100644 --- a/sim/iq2000/ChangeLog +++ b/sim/iq2000/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/iq2000/configure b/sim/iq2000/configure index ecefb970b80..6dd888c674d 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 504b72fc7bd..eac37deb417 100644 --- a/sim/lm32/ChangeLog +++ b/sim/lm32/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/lm32/configure b/sim/lm32/configure index 855a460c13d..1924db70357 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 df062560983..a7351d6846e 100644 --- a/sim/m32c/ChangeLog +++ b/sim/m32c/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-04 Mike Frysinger * load.c (m32c_load): Use BFD_VMA_FMT and drop casts. diff --git a/sim/m32c/configure b/sim/m32c/configure index efb30d52aa3..4d5f524a766 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 b0aa17f233f..e247deb034c 100644 --- a/sim/m32r/ChangeLog +++ b/sim/m32r/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/m32r/configure b/sim/m32r/configure index 75efb5c2001..ded50a2f953 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 9cf702715ef..2f1a42868ca 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 a9b6408aca7..77283424c89 100644 --- a/sim/m68hc11/ChangeLog +++ b/sim/m68hc11/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/m68hc11/configure b/sim/m68hc11/configure index e876c063c65..32a1570ecec 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 9151895ac95..d028e2bfa37 100644 --- a/sim/mcore/ChangeLog +++ b/sim/mcore/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/mcore/configure b/sim/mcore/configure index 8c995cf2a92..94c4f26d65b 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 5310e968bae..510cddedf7d 100644 --- a/sim/microblaze/ChangeLog +++ b/sim/microblaze/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/microblaze/configure b/sim/microblaze/configure index 2b838775b0d..1c2b06b60de 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 5eb6ea71c8f..62b3b4cf2a6 100644 --- a/sim/mips/ChangeLog +++ b/sim/mips/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * cp1.c (store_fcr): Mark static. diff --git a/sim/mips/configure b/sim/mips/configure index f7afb055460..084e22f26ae 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 04a2ccbd41c..8ff717f5da7 100644 --- a/sim/mn10300/ChangeLog +++ b/sim/mn10300/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/mn10300/configure b/sim/mn10300/configure index c10fb16f854..7353ac26962 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 c85e434d47f..f579ceb21a9 100644 --- a/sim/moxie/ChangeLog +++ b/sim/moxie/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/moxie/configure b/sim/moxie/configure index 15e36ee31f2..66361824c46 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 47b27961b05..acdca732d37 100644 --- a/sim/msp430/ChangeLog +++ b/sim/msp430/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/msp430/configure b/sim/msp430/configure index 6bb27f7f4a7..1f2c9cdc98f 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 c79f22a139d..33f41ff6bba 100644 --- a/sim/or1k/ChangeLog +++ b/sim/or1k/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/or1k/configure b/sim/or1k/configure index a4242d313a6..6ebe791ad3d 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 9f5464ab6dc..ac947a3ddcc 100644 --- a/sim/pru/ChangeLog +++ b/sim/pru/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/pru/configure b/sim/pru/configure index 6bb27f7f4a7..1f2c9cdc98f 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 0b86f385d91..c121d486b0c 100644 --- a/sim/riscv/ChangeLog +++ b/sim/riscv/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/riscv/configure b/sim/riscv/configure index 68c63a78bfa..6e9c9ab02f2 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 1be5181dc6d..f0e1631d5e4 100644 --- a/sim/rl78/ChangeLog +++ b/sim/rl78/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-04 Mike Frysinger * load.c (rl78_load): Use BFD_VMA_FMT and drop casts. diff --git a/sim/rl78/configure b/sim/rl78/configure index e12101440bf..59cb1ec2861 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 21a8ff626cf..9a707e4269e 100644 --- a/sim/rx/ChangeLog +++ b/sim/rx/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-04 Mike Frysinger * load.c (rx_load): Use BFD_VMA_FMT and drop casts. diff --git a/sim/rx/configure b/sim/rx/configure index 5339a32275a..87bb4296606 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 c2875a7e92b..d3c94d98197 100644 --- a/sim/sh/ChangeLog +++ b/sim/sh/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-01 Mike Frysinger * config.in, configure: Regenerate. diff --git a/sim/sh/configure b/sim/sh/configure index 8c995cf2a92..94c4f26d65b 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 9e5f770e48b..2407ed603fb 100644 --- a/sim/v850/ChangeLog +++ b/sim/v850/ChangeLog @@ -1,3 +1,7 @@ +2021-05-04 Mike Frysinger + + * configure: Regenerate. + 2021-05-03 Simon Marchi * interp.c (sim_open): Adjust format string specifier. diff --git a/sim/v850/configure b/sim/v850/configure index 32fd5122ebe..d74f002a0d6 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