diff options
author | Jerome Lambourg <lambourg@adacore.com> | 2017-06-27 13:15:35 +0000 |
---|---|---|
committer | Olivier Hainque <hainque@gcc.gnu.org> | 2017-06-27 13:15:35 +0000 |
commit | 50567938f93131f62346523bdb5a7d5fd251f42e (patch) | |
tree | 7000a8cdd8166ff156a77c1e4831eaadf3fa07bd /gcc/config.gcc | |
parent | e4b0df93a0647291d66393368388afb3005a7b90 (diff) | |
download | gcc-50567938f93131f62346523bdb5a7d5fd251f42e.zip gcc-50567938f93131f62346523bdb5a7d5fd251f42e.tar.gz gcc-50567938f93131f62346523bdb5a7d5fd251f42e.tar.bz2 |
config.gcc (i*86-wrs-vxworks7): Handle new acceptable triplet.
2017-06-27 Jerome Lambourg <lambourg@adacore.com>
gcc/
* config.gcc (i*86-wrs-vxworks7): Handle new acceptable triplet.
(x86_64-wrs-vxworks7): Likewise.
libgcc/
* config.host (i*86-wrs)vxworks7): Handle new acceptable triplet.
(x86_64-wrs-vxworks7): Likewise.
From-SVN: r249689
Diffstat (limited to 'gcc/config.gcc')
-rw-r--r-- | gcc/config.gcc | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/gcc/config.gcc b/gcc/config.gcc index 2912009..a97bbc8 100644 --- a/gcc/config.gcc +++ b/gcc/config.gcc @@ -1680,8 +1680,15 @@ i[34567]86-*-solaris2* | x86_64-*-solaris2.1[0-9]*) esac fi ;; -i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae) - tm_file="${tm_file} i386/unix.h i386/att.h elfos.h vx-common.h" +i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae|i[4567]86-wrs-vxworks7|x86_64-wrs-vxworks7) + tm_file="${tm_file} i386/unix.h i386/att.h elfos.h" + case ${target} in + x86_64-*) + need_64bit_isa=yes + tm_file="${tm_file} i386/x86-64.h" + ;; + esac + tm_file="${tm_file} vx-common.h" case ${target} in *-vxworksae*) tm_file="${tm_file} vxworksae.h i386/vxworks.h i386/vxworksae.h" |