diff options
author | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-23 01:25:56 +0000 |
---|---|---|
committer | nickc <nickc@138bc75d-0d04-0410-961f-82ee72b054a4> | 2000-02-23 01:25:56 +0000 |
commit | 8027f1d6e6e02f6b6a722954472bdd5b598299bb (patch) | |
tree | 9a1b4e0393138147d5dc1ed1df32201d1193293d /configure.in | |
parent | 94dea334d3aabc686bd943524ac264ce3f6a1443 (diff) | |
download | gcc-8027f1d6e6e02f6b6a722954472bdd5b598299bb.tar.gz |
Add support for sh-pe and arm-wince-pe targets.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@32109 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 1eb33d8e4e9..e4f2a49e842 100644 --- a/configure.in +++ b/configure.in @@ -343,6 +343,9 @@ case "${target}" in *-*-aix4.[3456789]* | *-*-aix[56789].*) target_makefile_frag="${target_makefile_frag} config/mt-aix43" ;; + mips*-*-pe | sh*-*-pe | *arm-wince-pe) + target_makefile_frag="${target_makefile_frag} config/mt-wince" + ;; esac # If --enable-target-optspace always use -Os instead of -O2 to build @@ -588,6 +591,21 @@ case "${target}" in arc-*-*) noconfigdirs="$noconfigdirs target-libgloss" ;; + sh*-*-pe|mips*-*-pe|*arm-wince-pe) + noconfigdirs="$noconfigdirs target-libjava target-libffi target-zlib" + noconfigdirs="$noconfigdirs target-boehm-gc target-qthreads target-examples" + noconfigdirs="$noconfigdirs target-librx target-libiberty texinfo send-pr" + noconfigdirs="$noconfigdirs tcl tix tk itcl libgui sim" + noconfigdirs="$noconfigdirs expect dejagnu" + # the C++ libraries don't build on top of CE's C libraries + noconfigdirs="$noconfigdirs target-libg++ target-libstdc++ target-libio" + skipdirs="$skipdirs target-newlib" + case "${host}" in + *-*-cygwin*) ;; # keep gdb and readline + *) noconfigdirs="$noconfigdirs gdb readline target-libio target-libstdc++ target-libg++" + ;; + esac + ;; arm-*-pe*) noconfigdirs="$noconfigdirs target-libgloss" ;; |