diff options
author | David Edelsohn <edelsohn@gnu.org> | 2004-03-05 21:03:19 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2004-03-05 16:03:19 -0500 |
commit | c18b95e5e467a28d54501891b4884851944d9fd1 (patch) | |
tree | dc9ea1e3211ae76bb95b27a86ee739e08924cc03 | |
parent | 2eb83715ced8b81ee05372f987163f0af084da4f (diff) | |
download | gcc-c18b95e5e467a28d54501891b4884851944d9fd1.zip gcc-c18b95e5e467a28d54501891b4884851944d9fd1.tar.gz gcc-c18b95e5e467a28d54501891b4884851944d9fd1.tar.bz2 |
ltconfig: Disable building static libraries if building shared libraries on AIX 5L.
* ltconfig: Disable building static libraries if building shared
libraries on AIX 5L.
From-SVN: r78984
-rw-r--r-- | ChangeLog | 5 | ||||
-rwxr-xr-x | ltconfig | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2004-03-05 David Edelsohn <edelsohn@gnu.org> + + * ltconfig: Disable building static libraries if building shared + libraries on AIX 5L. + 2004-03-01 Richard Sandiford <rsandifo@redhat.com> * configure.in (mips64*-*-linux*): Override mips*-*-linux* case @@ -1592,7 +1592,7 @@ aix3*) fi ;; -aix4*) +aix4* | aix5*) test "$enable_shared" = yes && enable_static=no ;; esac |