summaryrefslogtreecommitdiff
path: root/ltcf-cxx.sh
diff options
context:
space:
mode:
authorAlexandre Oliva <aoliva@redhat.com>2001-01-27 19:22:59 +0000
committerAlexandre Oliva <aoliva@redhat.com>2001-01-27 19:22:59 +0000
commitc751a76bb8bc9a61890aa04d6c67c0a7419fcb9d (patch)
tree0f6ecd667b9a59da37519ac9dd884701238524ce /ltcf-cxx.sh
parent8b8a5bf645db53e005a2f85733decd905af4af66 (diff)
downloadgdb-c751a76bb8bc9a61890aa04d6c67c0a7419fcb9d.tar.gz
* ltcf-c.sh (ld_shlibs) [aix5*]: Disable on unknown CPU types.
* ltcf-cxx.sh, ltcf-gcj.sh: Likewise.
Diffstat (limited to 'ltcf-cxx.sh')
-rw-r--r--ltcf-cxx.sh8
1 files changed, 7 insertions, 1 deletions
diff --git a/ltcf-cxx.sh b/ltcf-cxx.sh
index cefa0085624..eca44c068f9 100644
--- a/ltcf-cxx.sh
+++ b/ltcf-cxx.sh
@@ -2,7 +2,7 @@
# ltcf-cxx.sh - Create a C++ compiler specific configuration
#
-# Copyright (C) 1996-1999,2000 Free Software Foundation, Inc.
+# Copyright (C) 1996-1999, 2000, 2001 Free Software Foundation, Inc.
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
#
# Original C++ support by:Gary V. Vaughan <gvv@techie.com>
@@ -133,6 +133,12 @@ case "$host_os" in
aix3*)
# FIXME: insert proper C++ library support
ld_shlibs=no
+
+ # We don't want to build shared libraries on unknown CPU types.
+ case $host_cpu in
+ powerpc | rs6000) ;;
+ *) ld_shlibs=no ;;
+ esac
;;
aix4*)
archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'