diff options
author | Mike Frysinger <vapier@gentoo.org> | 2016-01-03 00:36:13 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2016-01-03 00:52:51 -0500 |
commit | 0cb8d8513cf44a102953ff5cf93e9dd399f42e9a (patch) | |
tree | 670e19c289dea5ba0a821d97709073078fc24e6d /sim/common/Make-common.in | |
parent | 1ac72f0659d64d6a14da862242db0d841d2878d0 (diff) | |
download | binutils-gdb-0cb8d8513cf44a102953ff5cf93e9dd399f42e9a.tar.gz |
sim: 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.
Diffstat (limited to 'sim/common/Make-common.in')
-rw-r--r-- | sim/common/Make-common.in | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/sim/common/Make-common.in b/sim/common/Make-common.in index 579e18752f2..36497e7babd 100644 --- a/sim/common/Make-common.in +++ b/sim/common/Make-common.in @@ -91,7 +91,6 @@ SIM_FLOAT = @sim_float@ SIM_HW_CFLAGS = @sim_hw_cflags@ SIM_HW_OBJS = @sim_hw_objs@ SIM_HW = @sim_hw@ -SIM_HOSTENDIAN = @sim_hostendian@ SIM_INLINE = @sim_inline@ SIM_PACKAGES = @sim_packages@ SIM_REGPARM = @sim_regparm@ @@ -243,7 +242,6 @@ CONFIG_CFLAGS = \ $(SIM_ENVIRONMENT) \ $(SIM_FLOAT) \ $(SIM_HW_CFLAGS) \ - $(SIM_HOSTENDIAN) \ $(SIM_INLINE) \ $(SIM_PACKAGES) \ $(SIM_REGPARM) \ |