aboutsummaryrefslogtreecommitdiff
path: root/sim/configure
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2021-05-01 17:16:23 -0400
committerMike Frysinger <vapier@gentoo.org>2021-05-04 08:22:07 -0400
commitaa0fca163e1736e158fd3922cbbc31b85c9c7df7 (patch)
treeece0136b2492db8771756b3214a5fa2cab121f63 /sim/configure
parent5ee0bc23a68fe2a6a7717b31fda1db878b2c9764 (diff)
downloadfsf-binutils-gdb-aa0fca163e1736e158fd3922cbbc31b85c9c7df7.zip
fsf-binutils-gdb-aa0fca163e1736e158fd3922cbbc31b85c9c7df7.tar.gz
fsf-binutils-gdb-aa0fca163e1736e158fd3922cbbc31b85c9c7df7.tar.bz2
sim: add support for build-time ar & ranlib
This is needed when building for a target whose ar & ranlib are incompatible with the current build system. For example, building for Windows on a Linux system. Then manually import the automake rule for libigen.a, but tweak the tool variables to use the FOR_BUILD variants.
Diffstat (limited to 'sim/configure')
-rwxr-xr-xsim/configure8
1 files changed, 8 insertions, 0 deletions
diff --git a/sim/configure b/sim/configure
index e90133a..eb0776c 100755
--- a/sim/configure
+++ b/sim/configure
@@ -673,7 +673,9 @@ RANLIB
AR
LDFLAGS_FOR_BUILD
CFLAGS_FOR_BUILD
+RANLIB_FOR_BUILD
CC_FOR_BUILD
+AR_FOR_BUILD
INSTALL_DATA
INSTALL_SCRIPT
INSTALL_PROGRAM
@@ -3888,11 +3890,15 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h
if test "x$cross_compiling" = "xno"; then
+ : "${AR_FOR_BUILD:=\$(AR)}"
: "${CC_FOR_BUILD:=\$(CC)}"
+ : "${RANLIB_FOR_BUILD:=\$(RANLIB)}"
: "${CFLAGS_FOR_BUILD:=\$(CFLAGS)}"
: "${LDFLAGS_FOR_BUILD:=\$(LDFLAGS)}"
else
+ : "${AR_FOR_BUILD:=ar}"
: "${CC_FOR_BUILD:=gcc}"
+ : "${RANLIB_FOR_BUILD:=ranlib}"
: "${CFLAGS_FOR_BUILD:=-g -O}"
: "${LDLFAGS_FOR_BUILD:=}"
fi
@@ -3901,6 +3907,8 @@ fi
+
+
if test -n "$ac_tool_prefix"; then
# Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args.
set dummy ${ac_tool_prefix}ar; ac_word=$2