]> git.ipfire.org Git - thirdparty/libtool.git/commitdiff
* libtool.m4 (AC_LIBTOOL_PROG_LD_SHLIBS): Fix ia64 AIX
authorGary V. Vaughan <gary@gnu.org>
Mon, 16 Jul 2001 19:11:34 +0000 (19:11 +0000)
committerGary V. Vaughan <gary@gnu.org>
Mon, 16 Jul 2001 19:11:34 +0000 (19:11 +0000)
run-time-linking when not using gcc.
(AC_LIBTOOL_LANG_CXX_CONFIG):  Ditto.
Reported by Dan McNichol <mcnichol@austin.ibm.com>

ChangeLog
libtool.m4

index 6ee6a3beac4fd4ce13d7035fed7ae2c1b077b440..a969e389c409a943377b5f45b6ab2801d63e1776 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2001-07-16  Gary V. Vaughan  <gary@gnu.org>
+
+       * libtool.m4 (AC_LIBTOOL_PROG_LD_SHLIBS): Fix ia64 AIX
+       run-time-linking when not using gcc.
+       (AC_LIBTOOL_LANG_CXX_CONFIG):  Ditto.
+       Reported by Dan McNichol <mcnichol@austin.ibm.com>
+
 2001-07-12  Gary V. Vaughan  <gary@gnu.org>
 
        From dda@sleepycat.com (Don Anderson):
index 23fdda925b8e885ac5e2f8bb05f11b0b930dc9c7..754bc65391cb5e54b14c70fe582776ac0e8f56a5 100644 (file)
@@ -2390,7 +2390,9 @@ case $host_os in
     else
       # not using gcc
       if test "$host_cpu" = ia64; then
-        shared_flag='${wl}-G'
+       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
+       # chokes on -Wl,-G. The following line is correct:
+        shared_flag='-G'
       else
        if test "$aix_use_runtimelinking" = yes; then
           shared_flag='${wl}-G'
@@ -4226,7 +4228,9 @@ else
     else
       # not using gcc
       if test "$host_cpu" = ia64; then
-        shared_flag='${wl}-G'
+       # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
+       # chokes on -Wl,-G. The following line is correct:
+        shared_flag='-G'
       else
        if test "$aix_use_runtimelinking" = yes; then
           shared_flag='${wl}-G'