diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-15 20:20:11 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-16 01:03:54 -0400 |
commit | 430456e34753ac705a047c886eb4f73cf2906dfc (patch) | |
tree | 0c46e6372c85dd346f9a3bd25f7885eac1669335 /sim/ppc/Makefile.in | |
parent | dae666c968ac9f053dc5dfe1a6ceaf333a8ca94d (diff) | |
download | binutils-430456e34753ac705a047c886eb4f73cf2906dfc.zip binutils-430456e34753ac705a047c886eb4f73cf2906dfc.tar.gz binutils-430456e34753ac705a047c886eb4f73cf2906dfc.tar.bz2 |
sim: ppc: drop host endian configure option
The --enable-sim-hostendian flag was purely so people had an escape route
for when cross-compiling. This is because historically, AC_C_BIGENDIAN
did not work in those cases. That was fixed a while ago though, so we can
require that macro everywhere now and simplify a good bit of code.
This was done for all the other ports years ago, so catch ppc up.
Diffstat (limited to 'sim/ppc/Makefile.in')
-rw-r--r-- | sim/ppc/Makefile.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 0814a34..c1135a3 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -73,7 +73,6 @@ RANLIB = @RANLIB@ INLINE_CFLAGS = @sim_inline@ ENDIAN_CFLAGS = @sim_endian@ -HOSTENDIAN_CFLAGS = @sim_hostendian@ SMP_CFLAGS = @sim_smp@ XOR_ENDIAN_CFLAGS = @sim_xor_endian@ BITSIZE_CFLAGS = @sim_bitsize@ @@ -88,7 +87,6 @@ WARNING_CFLAGS = @sim_warnings@ DEVZERO_CFLAGS = @sim_devzero@ CONFIG_CFLAGS = \ $(ENDIAN_CFLAGS) \ - $(HOSTENDIAN_CFLAGS) \ $(SMP_CFLAGS) \ $(XOR_ENDIAN_CFLAGS) \ $(BITSIZE_CFLAGS) \ |