mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-04-06 14:21:43 +08:00
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.
This commit is contained in:
parent
5ee0bc23a6
commit
aa0fca163e
@ -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.
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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.
|
||||
|
12
sim/aarch64/configure
vendored
12
sim/aarch64/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/arm/configure
vendored
12
sim/arm/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/avr/configure
vendored
12
sim/avr/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/bfin/configure
vendored
12
sim/bfin/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/bpf/configure
vendored
12
sim/bpf/configure
vendored
@ -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
|
||||
|
8
sim/configure
vendored
8
sim/configure
vendored
@ -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
|
||||
|
@ -1,3 +1,7 @@
|
||||
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.
|
||||
|
12
sim/cr16/configure
vendored
12
sim/cr16/configure
vendored
@ -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
|
||||
|
@ -1,3 +1,7 @@
|
||||
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
|
||||
|
12
sim/cris/configure
vendored
12
sim/cris/configure
vendored
@ -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
|
||||
|
@ -1,3 +1,7 @@
|
||||
2021-05-04 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
||||
2021-05-04 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* d10v_sim.h (decode_pc): Delete.
|
||||
|
12
sim/d10v/configure
vendored
12
sim/d10v/configure
vendored
@ -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
|
||||
|
@ -1,3 +1,7 @@
|
||||
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.
|
||||
|
12
sim/erc32/configure
vendored
12
sim/erc32/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/example-synacor/configure
vendored
12
sim/example-synacor/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/frv/configure
vendored
12
sim/frv/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/ft32/configure
vendored
12
sim/ft32/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/h8300/configure
vendored
12
sim/h8300/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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.
|
||||
|
12
sim/iq2000/configure
vendored
12
sim/iq2000/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/lm32/configure
vendored
12
sim/lm32/configure
vendored
@ -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
|
||||
|
@ -1,3 +1,7 @@
|
||||
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.
|
||||
|
12
sim/m32c/configure
vendored
12
sim/m32c/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/m32r/configure
vendored
12
sim/m32r/configure
vendored
@ -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
|
||||
|
@ -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)
|
||||
|
||||
|
@ -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.
|
||||
|
12
sim/m68hc11/configure
vendored
12
sim/m68hc11/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/mcore/configure
vendored
12
sim/mcore/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/microblaze/configure
vendored
12
sim/microblaze/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/mips/configure
vendored
12
sim/mips/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/mn10300/configure
vendored
12
sim/mn10300/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/moxie/configure
vendored
12
sim/moxie/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/msp430/configure
vendored
12
sim/msp430/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/or1k/configure
vendored
12
sim/or1k/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/pru/configure
vendored
12
sim/pru/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/riscv/configure
vendored
12
sim/riscv/configure
vendored
@ -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
|
||||
|
@ -1,3 +1,7 @@
|
||||
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.
|
||||
|
12
sim/rl78/configure
vendored
12
sim/rl78/configure
vendored
@ -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
|
||||
|
@ -1,3 +1,7 @@
|
||||
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.
|
||||
|
12
sim/rx/configure
vendored
12
sim/rx/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/sh/configure
vendored
12
sim/sh/configure
vendored
@ -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
|
||||
|
@ -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.
|
||||
|
12
sim/v850/configure
vendored
12
sim/v850/configure
vendored
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user