diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.in | 3 |
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index 96cdd735659..2261cb34d3d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-05-15 David Edelsohn <edelsohn@gnu.org> + + * configure.in: Special case powerpc*-*-aix* target_makefile_frag. + Mon May 15 13:39:09 2000 Andrew Cagney <cagney@b1.cygnus.com> * MAINTAINERS: Add self to Write After Approval list. diff --git a/configure.in b/configure.in index c8431d71452..3852fb66960 100644 --- a/configure.in +++ b/configure.in @@ -1018,6 +1018,9 @@ if [ x${shared} = xyes ]; then i[3456]86-*) target_makefile_frag="${target_makefile_frag} config/mt-x86pic" ;; + powerpc*-*-aix*) + # We don't want -fPIC on AIX. + ;; powerpc*-*) target_makefile_frag="${target_makefile_frag} config/mt-ppcpic" ;; |