From 0a534f40cc6e33a32058dbdc534347812d4a1c43 Mon Sep 17 00:00:00 2001 From: Nick Clifton Date: Sat, 25 Nov 2000 00:28:09 +0000 Subject: [PATCH] Add xscale-elf and xscale-coff targets. Add xscale-elf and xscale-coff targets. (Only supported in binutils at the moment). From-SVN: r37725 --- ChangeLog | 5 +++++ configure.in | 12 ++++++++++++ 2 files changed, 17 insertions(+) diff --git a/ChangeLog b/ChangeLog index 85ed2cae8b0..96e4a6eeccc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2000-11-24 Nick Clifton + + * configure.in (xscale-elf): Add target. + (xscale-coff): Add target. + 2000-11-22 Loren J. Rittle * ltcf-cxx.sh: Support creation of C++ shared libraries on diff --git a/configure.in b/configure.in index e1bad8971ba..21c15ad86cd 100644 --- a/configure.in +++ b/configure.in @@ -675,6 +675,18 @@ case "${target}" in target_configdirs="${target_configdirs} target-bsp target-cygmon" fi ;; + xscale-*-elf) + noconfigdirs="$noconfigdirs target-libgloss target-libffi" + if [ x${is_cross_compiler} != xno ] ; then + target_configdirs="${target_configdirs} target-bsp target-cygmon" + fi + ;; + xscale-*-coff) + noconfigdirs="$noconfigdirs target-libgloss target-libffi" + if [ x${is_cross_compiler} != xno ] ; then + target_configdirs="${target_configdirs} target-bsp target-cygmon" + fi + ;; thumb-*-pe) noconfigdirs="$noconfigdirs target-libgloss target-libffi" ;;