diff options
author | Phil Edwards <phil@codesourcery.com> | 2005-09-01 17:44:40 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2005-09-01 17:44:40 +0000 |
commit | d442d7d9dd849cf41b0a287662dfa8384a5fa8fb (patch) | |
tree | fd913f7e8553f232a29a1f2f3f996ad9e8de205d /gcc/config.gcc | |
parent | d8852c4fd98c0852dd46898b2d89f315f862590b (diff) | |
download | gcc-d442d7d9dd849cf41b0a287662dfa8384a5fa8fb.zip gcc-d442d7d9dd849cf41b0a287662dfa8384a5fa8fb.tar.gz gcc-d442d7d9dd849cf41b0a287662dfa8384a5fa8fb.tar.bz2 |
config.gcc (i*86-wrs-vxworks): Update.
2005-08-30 Phil Edwards <phil@codesourcery.com>
* config.gcc (i*86-wrs-vxworks): Update. Split out vxworksae target.
* config/i386/t-vxworks: Update multilibs for VxWorks 6 and RTP mode.
* config/i386/vxworks.h: Likewise.
* config/i386/t-vxworksae: New file, for VxWorks AE.
* config/i386/vxworksae.h: Likewise.
From-SVN: r103741
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index f728132..5b1b2e1 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1169,9 +1169,18 @@ i[34567]86-*-sysv4*) # Intel 80386's running system V.4 extra_parts="crtbegin.o crtend.o" use_fixproto=yes ;; -i[4567]86-wrs-vxworks) - tm_file="${tm_file} i386/sysv4.h i386/unix.h i386/vxworks.h" - tmake_file="${tmake_file} i386/t-vxworks" +i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae) + tm_file="${tm_file} i386/sysv4.h i386/unix.h i386/att.h vx-common.h" + case ${target} in + *-vxworksae*) + tm_file="${tm_file} vxworksae.h i386/vxworksae.h" + tmake_file="${tmake_file} i386/t-vxworks i386/t-vxworksae" + ;; + *) + tm_file="${tm_file} vxworks.h i386/vxworks.h" + tmake_file="${tmake_file} i386/t-vxworks" + ;; + esac ;; i[34567]86-*-pe | i[34567]86-*-cygwin*) tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h" |