diff --git a/ChangeLog b/ChangeLog index 6ee6a3be..a969e389 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2001-07-16 Gary V. Vaughan + + * 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 + 2001-07-12 Gary V. Vaughan From dda@sleepycat.com (Don Anderson): diff --git a/libtool.m4 b/libtool.m4 index 23fdda92..754bc653 100644 --- a/libtool.m4 +++ b/libtool.m4 @@ -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'