aboutsummaryrefslogtreecommitdiff
path: root/sim/configure.in
diff options
context:
space:
mode:
authorJeff Law <law@redhat.com>1996-10-12 03:14:54 +0000
committerJeff Law <law@redhat.com>1996-10-12 03:14:54 +0000
commitaee4f36a8973ec90fc53ba90b15af87e8e65b1b0 (patch)
tree0edfd37ff744d94f246f067099f3c377ff4bc055 /sim/configure.in
parent90a0f3aa64b928c4d1b13a6e93e35338dd3de568 (diff)
downloadgdb-aee4f36a8973ec90fc53ba90b15af87e8e65b1b0.zip
gdb-aee4f36a8973ec90fc53ba90b15af87e8e65b1b0.tar.gz
gdb-aee4f36a8973ec90fc53ba90b15af87e8e65b1b0.tar.bz2
* configure.in: Only build the V850 simulator if
we are using gcc. * configure: Rebuild. So builds with "cc" don't die in the v850 simulator directory.
Diffstat (limited to 'sim/configure.in')
-rw-r--r--sim/configure.in10
1 files changed, 9 insertions, 1 deletions
diff --git a/sim/configure.in b/sim/configure.in
index 02a98f7..4400b69 100644
--- a/sim/configure.in
+++ b/sim/configure.in
@@ -63,7 +63,15 @@ case "${target}" in
powerpc*-*-eabi* | powerpc*-*-solaris* | powerpc*-*-sysv4* | powerpc*-*-elf* )
if test x"$powerpc_sim" = x"yes"; then sim_target=ppc; fi ;;
# start-sanitize-v850
- v850-*-*) sim_target=v850 ;;
+ v850-*-*)
+ # The V850 simulator can only be compiled
+ # by gcc.
+ if test "${GCC}" = "yes"; then
+ sim_target=v850
+ else
+ sim_target=none
+ fi
+ ;;
# end-sanitize-v850
w65-*-*) sim_target=w65 ;;
z8k*-*-*) sim_target=z8k ;;