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
68 changed files with 476 additions and 66 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue