diff options
author | joel <joel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-26 22:30:19 +0000 |
---|---|---|
committer | joel <joel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2002-04-26 22:30:19 +0000 |
commit | 81ae91343813bba1e7c7199e39ddbf13258f122b (patch) | |
tree | dfe47eae35e4ee57d81c5a80f98ef7ce0fccf898 /configure.in | |
parent | 2baadbf68d23189f27b8f68e4f14d8816cb317f6 (diff) | |
download | gcc-81ae91343813bba1e7c7199e39ddbf13258f122b.tar.gz |
2002-04-26 Joel Sherrill <joel@OARcorp.com>
* configure.in (h8300*-*-rtems*): Disable libf2c and libgcj.
(sparc-*-elf*, sparc64-*-elf*): Disable libgcj.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@52813 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.in b/configure.in index fc528ac2050..c42f241671d 100644 --- a/configure.in +++ b/configure.in @@ -694,6 +694,12 @@ case "${target}" in ;; *-*-rtems*) noconfigdirs="$noconfigdirs target-libgloss ${libgcj}" + case ${target} in + h8300*-*-* | h8500-*-*) + noconfigdirs="$noconfigdirs target-libf2c" + ;; + *) ;; + esac ;; *-*-vxworks*) noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" @@ -845,6 +851,12 @@ case "${target}" in i[34567]86-*-freebsd*) noconfigdirs="$noconfigdirs target-newlib target-libgloss" ;; + s390*-*-linux*) + # The libffi port is not yet in the GCC tree + noconfigdirs="$noconfigdirs target-newlib target-libgloss ${libgcj}" + # linux has rx in libc + skipdirs="$skipdirs target-librx" + ;; *-*-linux*) noconfigdirs="$noconfigdirs target-newlib target-libgloss" # linux has rx in libc @@ -1022,11 +1034,13 @@ case "${target}" in if [ x${is_cross_compiler} != xno ] ; then target_configdirs="${target_configdirs} target-libstub target-cygmon" fi + noconfigdirs="$noconfigdirs ${libgcj}" ;; sparc64-*-elf*) if [ x${is_cross_compiler} != xno ] ; then target_configdirs="${target_configdirs} target-libstub target-cygmon" fi + noconfigdirs="$noconfigdirs ${libgcj}" ;; sparclite-*-*) if [ x${is_cross_compiler} != xno ] ; then |