diff options
author | Mike Frysinger <vapier@gentoo.org> | 2022-11-07 23:04:25 +0700 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2022-11-07 23:25:27 +0700 |
commit | 763b20abcbfa3e35fc69ac3c8a56183039ee8c69 (patch) | |
tree | 7293523d220cfd50a1b9a999c024a9007fc12276 /sim/configure.ac | |
parent | ee79c7df308ff2931fa6d893da5b7ab3604e73a9 (diff) | |
download | fsf-binutils-gdb-763b20abcbfa3e35fc69ac3c8a56183039ee8c69.zip fsf-binutils-gdb-763b20abcbfa3e35fc69ac3c8a56183039ee8c69.tar.gz fsf-binutils-gdb-763b20abcbfa3e35fc69ac3c8a56183039ee8c69.tar.bz2 |
sim: or1k: drop subdir configure logic
We've been using this only to set the default word size to 32. We
can easily move this into the makefile via a -D compiler flag and
clean up the build logic quite a bit.
Diffstat (limited to 'sim/configure.ac')
-rw-r--r-- | sim/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sim/configure.ac b/sim/configure.ac index c179e63..48bf75e 100644 --- a/sim/configure.ac +++ b/sim/configure.ac @@ -147,7 +147,7 @@ if test "${enable_sim}" != no; then SIM_TARGET([mn10300*-*-*], [mn10300], [true], [sim_igen=yes]) SIM_TARGET([moxie-*-*], [moxie]) SIM_TARGET([msp430*-*-*], [msp430]) - SIM_TARGET([or1k*-*-*], [or1k], [true]) + SIM_TARGET([or1k*-*-*], [or1k]) SIM_TARGET([powerpc*-*-*], [ppc], [true]) SIM_TARGET([pru*-*-*], [pru]) SIM_TARGET([riscv*-*-*], [riscv]) |