aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Edelsohn <edelsohn@gnu.org>2000-05-16 02:42:43 +0000
committerDavid Edelsohn <dje@gcc.gnu.org>2000-05-15 22:42:43 -0400
commit758c7bd466ea8751e8ae98a6da6b8110ec9cbd98 (patch)
tree65dec6332adf064f085852379f05e3fecba02d69
parentf7af368f2582fd6962833c0da664aa0ece24dd97 (diff)
downloadgcc-758c7bd466ea8751e8ae98a6da6b8110ec9cbd98.zip
gcc-758c7bd466ea8751e8ae98a6da6b8110ec9cbd98.tar.gz
gcc-758c7bd466ea8751e8ae98a6da6b8110ec9cbd98.tar.bz2
* configure.in: Special case powerpc*-*-aix* target_makefile_frag.
From-SVN: r33917
-rw-r--r--ChangeLog4
-rw-r--r--configure.in3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 96cdd73..2261cb3 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 c8431d7..3852fb6 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"
;;