diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-01-17 13:39:03 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-02-06 10:56:11 -0500 |
commit | aa09469fc64467d1748c6041befb55bbad9e2328 (patch) | |
tree | 7378e736f0e74d16a9eda321c55f641f94de5f66 /sim/ppc/Makefile.in | |
parent | 2c6f2aa66499332b7bb016869fd01267ca1b52ef (diff) | |
download | binutils-aa09469fc64467d1748c6041befb55bbad9e2328.zip binutils-aa09469fc64467d1748c6041befb55bbad9e2328.tar.gz binutils-aa09469fc64467d1748c6041befb55bbad9e2328.tar.bz2 |
sim: drop use of bfd/configure.host
These settings might have made sense in darker compiler times, but I
think they're largely obsolete now. Looking through the values that
get used in HDEFINES, it's quite limited, and configure itself should
handle them. If we still need something, we can leverage standard
autoconf macros instead, after we get a clear user report.
TDEFINES was never set anywhere and was always empty, so prune that.
Diffstat (limited to 'sim/ppc/Makefile.in')
-rw-r--r-- | sim/ppc/Makefile.in | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 8c62f44..3479e7a 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -103,8 +103,8 @@ CONFIG_CFLAGS = \ $(DEVZERO_CFLAGS) SIM_FPU_CFLAGS = @sim_fpu_cflags@ -STD_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARNING_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $(INTL_CFLAGS) $(SIM_FPU_CFLAGS) -NOWARN_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(HDEFINES) $(TDEFINES) $(INCLUDES) $(SIM_FPU_CFLAGS) +STD_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(WARNING_CFLAGS) $(INCLUDES) $(INTL_CFLAGS) $(SIM_FPU_CFLAGS) +NOWARN_CFLAGS = $(CFLAGS) $(INLINE_CFLAGS) $(CONFIG_CFLAGS) $(INCLUDES) $(SIM_FPU_CFLAGS) BUILD_CFLAGS = $(CFLAGS_FOR_BUILD) $(INCLUDES) $(WARNING_CFLAGS) BUILD_LDFLAGS = @@ -121,8 +121,6 @@ IGEN_SMP = @sim_igen_smp@ IGEN_LINE_NR = @sim_line_nr@ DGEN_FLAGS = @sim_switch@ -HDEFINES = @HDEFINES@ -TDEFINES = IGEN_FLAGS = \ $(IGEN_DECODE_MECHANISM) \ $(IGEN_DUPLICATE) \ |