* 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>
This commit is contained in:
Gary V. Vaughan 2001-07-16 19:11:34 +00:00
parent 706b9e9c36
commit 7b207c31e8
2 changed files with 13 additions and 2 deletions

View File

@ -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):

8
libtool.m4 vendored
View 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'