diff options
author | Sean Eric Fagan <sef@cygnus> | 1994-06-21 17:07:44 +0000 |
---|---|---|
committer | Sean Eric Fagan <sef@cygnus> | 1994-06-21 17:07:44 +0000 |
commit | 9ab10a5bc7798d43f669d405c91ef3a1db8423d6 (patch) | |
tree | 33fb657a1f6c138860279aeb310893d27e22e195 /configure.in | |
parent | badd23e323107a688e5b7ac4750904054797c0ab (diff) | |
download | gdb-9ab10a5bc7798d43f669d405c91ef3a1db8423d6.zip gdb-9ab10a5bc7798d43f669d405c91ef3a1db8423d6.tar.gz gdb-9ab10a5bc7798d43f669d405c91ef3a1db8423d6.tar.bz2 |
Added support for nev-v810 processor. A newlib *only* target, for now at
least.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.in b/configure.in index dbaec0c..7f0eed8 100644 --- a/configure.in +++ b/configure.in @@ -32,7 +32,7 @@ host_tools="texinfo byacc flex bison binutils ld gas gcc gdb make patch prms send-pr gprof gdbtest tgas etc expect dejagnu sim m4 autoconf ispell grep diff rcs cvs fileutils shellutils textutils wdiff find emacs uudecode hello tar gzip indent - recode release sed utils" + recode release sed utils newlib" # these libraries are built for the target environment, and are built after @@ -123,6 +123,10 @@ fi # per-target: +case "${target}" in + v810*) target_makefile_frag=config/mt-v810 ;; +esac + gasdir=gas use_gnu_ld= use_gnu_as= |