summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2003-09-05 15:34:46 +0000
committernickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4>2003-09-05 15:34:46 +0000
commit00b114bf3c4ead7c297b9076cbd72259d3e61513 (patch)
tree98fb22fe94aa9213314c51a49ccaf17699cf97b6
parent7c0f7f46dc1787181bde2470233ac44f879d1152 (diff)
downloadgcc-00b114bf3c4ead7c297b9076cbd72259d3e61513.tar.gz
Oops - I forgot to commit the change to this file along with the v850e1 patch
yesterday. This part of the patch adds support for a --target=v850e1-elf configuration as well as --target=v850-elf --with-cpu=v850e1. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@71113 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r--gcc/config.gcc17
1 files changed, 16 insertions, 1 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc
index 6881a4593a4..1c4629bcc2c 100644
--- a/gcc/config.gcc
+++ b/gcc/config.gcc
@@ -1988,6 +1988,21 @@ strongarm-*-kaos*)
md_file=arm/arm.md
extra_modes=arm/arm-modes.def
;;
+v850e1-*-*)
+ target_cpu_default="TARGET_CPU_v850e1"
+ tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
+ tm_p_file=v850/v850-protos.h
+ tmake_file=v850/t-v850e
+ md_file=v850/v850.md
+ out_file=v850/v850.c
+ if test x$stabs = xyes
+ then
+ tm_file="${tm_file} dbx.h"
+ fi
+ use_collect2=no
+ c_target_objs="v850-c.o"
+ cxx_target_objs="v850-c.o"
+ ;;
v850e-*-*)
target_cpu_default="TARGET_CPU_v850e"
tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
@@ -2438,7 +2453,7 @@ esac
v850*-*-*)
supported_defaults=cpu
case "x$with_cpu" in
- x | xv850e)
+ x | xv850e | xv850e1)
# OK
;;
*)