diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-03-08 00:35:03 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-03-13 11:21:13 -0500 |
commit | e7d9022ba8755005cae79207b5f911b1a9cebed4 (patch) | |
tree | 4583661a1178aa6ddbee99ad97d0b3c2e334e06d /sim/igen | |
parent | c6c7769d9dd166c45bd9d422e91ca537752c0382 (diff) | |
download | gdb-e7d9022ba8755005cae79207b5f911b1a9cebed4.zip gdb-e7d9022ba8755005cae79207b5f911b1a9cebed4.tar.gz gdb-e7d9022ba8755005cae79207b5f911b1a9cebed4.tar.bz2 |
sim: rename BUILD_LDFLAGS to LDFLAGS_FOR_BUILD
The rest of the binutils tree renamed this variable many years ago.
Diffstat (limited to 'sim/igen')
-rw-r--r-- | sim/igen/ChangeLog | 8 | ||||
-rw-r--r-- | sim/igen/Makefile.in | 4 | ||||
-rwxr-xr-x | sim/igen/configure | 4 | ||||
-rw-r--r-- | sim/igen/configure.ac | 3 |
4 files changed, 17 insertions, 2 deletions
diff --git a/sim/igen/ChangeLog b/sim/igen/ChangeLog index 5ee1c7a..a374d5e 100644 --- a/sim/igen/ChangeLog +++ b/sim/igen/ChangeLog @@ -1,5 +1,13 @@ 2021-03-13 Mike Frysinger <vapier@gentoo.org> + * Makefile.in (LDFLAGS_FOR_BUILD): Define. + (BUILD_LDFLAGS): Delete. + (LINK_FOR_BUILD): Change BUILD_LDFLAGS to LDFLAGS_FOR_BUILD. + * configure.ac (LDFLAGS_FOR_BUILD): Define. + * configure: Regenerate. + +2021-03-13 Mike Frysinger <vapier@gentoo.org> + * Makefile.in (COMPILE_FOR_BUILD, LINK_FOR_BUILD): Define. (.c.o, igen.o): Call COMPILE_FOR_BUILD. (igen, tmp-table, tmp-filter, tmp-ld-decode, tmp-ld-cache, tmp-ld-insn, diff --git a/sim/igen/Makefile.in b/sim/igen/Makefile.in index 60626ad..3c06c72 100644 --- a/sim/igen/Makefile.in +++ b/sim/igen/Makefile.in @@ -60,6 +60,7 @@ CFLAGS = @CFLAGS@ CC_FOR_BUILD = @CC_FOR_BUILD@ CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ +LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@ WARN_CFLAGS = @WARN_CFLAGS@ WERROR_CFLAGS = @WERROR_CFLAGS@ @@ -80,10 +81,9 @@ BUILD_CFLAGS = \ $(IGEN_WARN_CFLAGS) \ $(IGEN_WERROR_CFLAGS) \ $(INCLUDES) -BUILD_LDFLAGS = COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS) -LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(BUILD_LDFLAGS) -o $@ +LINK_FOR_BUILD = $(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(LDFLAGS_FOR_BUILD) -o $@ all: igen #all: tmp-filter tmp-table tmp-ld-insn tmp-ld-cache tmp-ld-decode tmp-gen diff --git a/sim/igen/configure b/sim/igen/configure index 074e0dd..527b54f 100755 --- a/sim/igen/configure +++ b/sim/igen/configure @@ -584,6 +584,7 @@ PACKAGE_URL= ac_unique_file="table.h" ac_subst_vars='LTLIBOBJS LIBOBJS +LDFLAGS_FOR_BUILD CFLAGS_FOR_BUILD CC_FOR_BUILD target_os @@ -2779,9 +2780,11 @@ fi if test "x$cross_compiling" = "xno" -a "x$host" != "xi386-windows"; then CC_FOR_BUILD='$(CC)' CFLAGS_FOR_BUILD='$(CFLAGS)' + LDFLAGS_FOR_BUILD='$(LDFLAGS)' else CC_FOR_BUILD=${CC_FOR_BUILD-gcc} CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-"-g"} + LDFLAGS_FOR_BUILD= fi # Make sure we can run config.sub. @@ -2899,6 +2902,7 @@ test -n "$target_alias" && + ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF diff --git a/sim/igen/configure.ac b/sim/igen/configure.ac index 807e1d5..d87673e 100644 --- a/sim/igen/configure.ac +++ b/sim/igen/configure.ac @@ -11,14 +11,17 @@ SIM_AC_OPTION_WARNINGS if test "x$cross_compiling" = "xno" -a "x$host" != "xi386-windows"; then CC_FOR_BUILD='$(CC)' CFLAGS_FOR_BUILD='$(CFLAGS)' + LDFLAGS_FOR_BUILD='$(LDFLAGS)' else CC_FOR_BUILD=${CC_FOR_BUILD-gcc} CFLAGS_FOR_BUILD=${CFLAGS_FOR_BUILD-"-g"} + LDFLAGS_FOR_BUILD= fi AC_CANONICAL_SYSTEM AC_SUBST(CC_FOR_BUILD) AC_SUBST(CFLAGS_FOR_BUILD) +AC_SUBST(LDFLAGS_FOR_BUILD) AC_OUTPUT(Makefile) |