Skip to content

Commit

Permalink
Add support for sh-pe and arm-wince-pe targets.
Browse files Browse the repository at this point in the history
  • Loading branch information
nickclifton committed Feb 23, 2000
1 parent 9dfc83d commit 237e6cf
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2000-02-22 Nick Clifton <[email protected]>

* configure.in: Add mips-pe, sh-pe and arm-wince-pe targets.

2000-02-20 Christopher Faylor <[email protected]>

* config.guess: Guess "cygwin" rather than "cygwin32".
Expand Down
4 changes: 4 additions & 0 deletions config/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2000-02-22 Nick Clifton <[email protected]>

* config/mt-wince: new file: Makefile fragment for WinCE targets.

2000-01-06 Geoff Keating <[email protected]>

* mh-aix43: Delete, move to mt-aix43.
Expand Down
10 changes: 10 additions & 0 deletions config/mt-wince
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# For Windows CE, we need to build the program that converts, copies,
# and renames the platform SDK files into gcc directories.

EXTRA_TARGET_HOST_ALL_MODULES:=$(EXTRA_TARGET_HOST_ALL_MODULES) all-utils
EXTRA_TARGET_HOST_INSTALL_MODULES:=$(EXTRA_TARGET_HOST_INSTALL_MODULES) install-utils

all-utils : all-libiberty

install-utils : all-libiberty

18 changes: 18 additions & 0 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -332,6 +332,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
Expand Down Expand Up @@ -569,6 +572,21 @@ case "${target}" in
# newlib is not 64 bit ready
noconfigdirs="$noconfigdirs target-newlib 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
;;
arc-*-*)
noconfigdirs="$noconfigdirs target-libgloss"
;;
Expand Down

0 comments on commit 237e6cf

Please sign in to comment.