From 4feb00bef1bf9259e80d731326e6d1bbe4660677 Mon Sep 17 00:00:00 2001 From: Michael Tiemann Date: Sun, 31 May 1992 13:45:08 +0000 Subject: [PATCH] Handle -m680[01234]0-wrs as specific vxworks68 targets. With -nfp, this offers full control over the CPU parameters of vxworks systems we are likely to encounter (not to mention other 68k embedded targets that run a.out as their debugging format). --- gdb/configure.in | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/gdb/configure.in b/gdb/configure.in index 779a0dc3df..e09798fe14 100644 --- a/gdb/configure.in +++ b/gdb/configure.in @@ -215,12 +215,21 @@ m68000) sunos4) gdb_target=sun2os4 ;; *) gdb_target=sun2 ;; esac + ;; + wrs) gdb_target=vxworks68 ;; + esac + ;; + +m680[124]0) + case "${target_vendor}" in + wrs) gdb_target=vxworks68 ;; esac ;; m68030) case "${target_vendor}" in sony) gdb_target=news1000 ;; + wrs) gdb_target=vxworks68 ;; esac ;;