diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-11-09 22:44:47 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-11-09 22:44:47 +0000 |
commit | f50dc1050dcd180b35585913862be85d58170f92 (patch) | |
tree | 179d9182bced6061c2e816fddea886964261f20c /sim/configure.in | |
parent | 3c0bf315f5578d5ca1da93d55d999304407a490d (diff) | |
download | gdb-f50dc1050dcd180b35585913862be85d58170f92.zip gdb-f50dc1050dcd180b35585913862be85d58170f92.tar.gz gdb-f50dc1050dcd180b35585913862be85d58170f92.tar.bz2 |
Add --enable-sim-powerpc support.
Diffstat (limited to 'sim/configure.in')
-rw-r--r-- | sim/configure.in | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/sim/configure.in b/sim/configure.in index 7ab2a32..8114514 100644 --- a/sim/configure.in +++ b/sim/configure.in @@ -21,6 +21,14 @@ else fi AC_SUBST(CC_FOR_BUILD) +AC_ARG_ENABLE(sim-powerpc, +[ --enable-sim-powerpc ], +[case "${enableval}" in +yes) powerpc_sim=yes ;; +no) powerpc_sim=no ;; +*) AC_MSG_ERROR(bad value ${enableval} given for sim-powerpc option) ;; +esac],[if test x"$GCC" != x""; then powerpc_sim=yes; else powerpc_sim=no; fi]) + # WHEN ADDING ENTRIES TO THIS MATRIX: # Make sure that the left side always has two dashes. Otherwise you # can get spurious matches. Even for unambiguous cases, do this as a @@ -32,7 +40,7 @@ case "${target}" in h8500-*-*) sim_target=h8500 ;; mips*-*-*) sim_target=mips ;; sh*-*-*) sim_target=sh ;; - powerpc*-*-eabi*) if test x$GCC != x""; then sim_target=ppc; fi ;; + powerpc*-*-eabi*) if test x"powerpc_sim" = x"yes"; then sim_target=ppc; fi ;; w65-*-*) sim_target=w65 ;; z8k*-*-*) sim_target=z8k ;; *) sim_target=none ;; |