diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-08-19 17:21:55 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-09-08 01:24:15 -0400 |
commit | 99aedb6243a8ab8b434ec321de0fc3fbb2b6eebf (patch) | |
tree | 5db340e44ba833a096653c97dc94dcf17a294007 /sim/configure.ac | |
parent | 551a11e1fb395926a4fbe9b3d2d8a27d869ebb52 (diff) | |
download | fsf-binutils-gdb-99aedb6243a8ab8b434ec321de0fc3fbb2b6eebf.zip fsf-binutils-gdb-99aedb6243a8ab8b434ec321de0fc3fbb2b6eebf.tar.gz fsf-binutils-gdb-99aedb6243a8ab8b434ec321de0fc3fbb2b6eebf.tar.bz2 |
sim: update configure target list
Fix sorting of the list, and update the globs to match the list used
in gdb's configure script.
Diffstat (limited to 'sim/configure.ac')
-rw-r--r-- | sim/configure.ac | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/sim/configure.ac b/sim/configure.ac index 098d88b..5d36e55 100644 --- a/sim/configure.ac +++ b/sim/configure.ac @@ -107,6 +107,9 @@ dnl WHEN ADDING ENTRIES TO THIS MATRIX: dnl Make sure that the left side always has two dashes. Otherwise you can get dnl spurious matches. Even for unambiguous cases, do this as a convention, else dnl the table becomes a real mess to understand and maintain. +dnl +dnl NB: Target matching is aligned with gdb/configure.tgt. Changes must be kept +dnl in sync with that file. if test "${enable_sim}" != no; then sim_igen=no for targ in `echo $target $enable_targets | sed 's/,/ /g'` @@ -128,19 +131,19 @@ if test "${enable_sim}" != no; then SIM_TARGET([m32r-*-*], [m32r]) SIM_TARGET([m68hc11-*-*|m6811-*-*], [m68hc11]) SIM_TARGET([mcore-*-*], [mcore]) - SIM_TARGET([microblaze-*-*], [microblaze]) + SIM_TARGET([microblaze*-*-*], [microblaze]) SIM_TARGET([mips*-*-*], [mips], [true], [sim_igen=yes]) SIM_TARGET([mn10300*-*-*], [mn10300], [true], [sim_igen=yes]) SIM_TARGET([moxie-*-*], [moxie]) SIM_TARGET([msp430*-*-*], [msp430]) - SIM_TARGET([or1k-*-* | or1knd-*-*], [or1k], [true]) + SIM_TARGET([or1k*-*-*], [or1k], [true]) + SIM_TARGET([powerpc*-*-*], [ppc], [true]) SIM_TARGET([pru*-*-*], [pru]) SIM_TARGET([riscv*-*-*], [riscv], [true]) SIM_TARGET([rl78-*-*], [rl78]) SIM_TARGET([rx-*-*], [rx]) SIM_TARGET([sh*-*-*], [sh]) - SIM_TARGET([sparc-*-rtems*|sparc-*-elf*], [erc32]) - SIM_TARGET([powerpc*-*-*], [ppc], [true]) + SIM_TARGET([sparc-*-*], [erc32]) SIM_TARGET([v850*-*-*], [v850], [true], [sim_igen=yes]) done |