diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-01 17:44:40 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2005-09-01 17:44:40 +0000 |
commit | 2adf99fa506fe66870d0c7b9f877200bafba3264 (patch) | |
tree | fd913f7e8553f232a29a1f2f3f996ad9e8de205d /gcc/config.gcc | |
parent | 51427b7f71cf5598e46079768e11f20b5fc2a036 (diff) | |
download | gcc-2adf99fa506fe66870d0c7b9f877200bafba3264.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@103741 138bc75d-0d04-0410-961f-82ee72b054a4
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 f7281329343..5b1b2e12c7b 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" |