diff options
author | Jeffrey A Law <law@cygnus.com> | 1998-04-08 23:10:27 +0000 |
---|---|---|
committer | Jeff Law <law@gcc.gnu.org> | 1998-04-08 17:10:27 -0600 |
commit | 62db76ee5fc19a98d765c1954387373e3d4fee04 (patch) | |
tree | 8b2b2232247d7d3c2bb4954722f08a616307cd18 /gcc | |
parent | 10a998b0c2d15e9e2ee17c94533f02c0d8a1a171 (diff) | |
download | gcc-62db76ee5fc19a98d765c1954387373e3d4fee04.zip gcc-62db76ee5fc19a98d765c1954387373e3d4fee04.tar.gz gcc-62db76ee5fc19a98d765c1954387373e3d4fee04.tar.bz2 |
configure.in (v850): Use t-v850.
* configure.in (v850): Use t-v850.
(ix86-wrs-vxworks): Recognize 786 just like other x86 configurations.
From-SVN: r19062
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 3 | ||||
-rwxr-xr-x | gcc/configure | 3 | ||||
-rw-r--r-- | gcc/configure.in | 3 |
3 files changed, 7 insertions, 2 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 6edf783..ff2e73b 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -23,6 +23,9 @@ Fri Apr 3 17:02:13 1998 Alexandre Petit-Bianco <apbianco@cygnus.com> Wed Apr 8 12:51:19 1998 Jeffrey A Law (law@cygnus.com) + * configure.in (v850): Use t-v850. + (ix86-wrs-vxworks): Recognize 786 just like other x86 configurations. + * protoize.c (creat, read, write): Do not declare. * jump.c (mark_jump_label): Record REG_LABEL notes for insns which diff --git a/gcc/configure b/gcc/configure index 05ecc76..395dd56 100755 --- a/gcc/configure +++ b/gcc/configure @@ -2445,7 +2445,7 @@ for machine in $build $host $target; do tm_file=i386/sun.h use_collect2=yes ;; - i[3456]86-wrs-vxworks*) + i[34567]86-wrs-vxworks*) tm_file=i386/vxi386.h tmake_file=i386/t-i386bare ;; @@ -4273,6 +4273,7 @@ for machine in $build $host $target; do cpu_type=v850 tm_file="v850/v850.h" xm_file="v850/xm-v850.h" + tmake_file=v850/t-v850 if [ x$stabs = xyes ] then tm_file="${tm_file} dbx.h" diff --git a/gcc/configure.in b/gcc/configure.in index 0bd2279..a6eb0b2 100644 --- a/gcc/configure.in +++ b/gcc/configure.in @@ -762,7 +762,7 @@ for machine in $build $host $target; do tm_file=i386/sun.h use_collect2=yes ;; - i[[3456]]86-wrs-vxworks*) + i[[34567]]86-wrs-vxworks*) tm_file=i386/vxi386.h tmake_file=i386/t-i386bare ;; @@ -2590,6 +2590,7 @@ for machine in $build $host $target; do cpu_type=v850 tm_file="v850/v850.h" xm_file="v850/xm-v850.h" + tmake_file=v850/t-v850 if [[ x$stabs = xyes ]] then tm_file="${tm_file} dbx.h" |