diff options
author | David Edelsohn <edelsohn@gnu.org> | 2000-05-16 02:42:43 +0000 |
---|---|---|
committer | David Edelsohn <dje@gcc.gnu.org> | 2000-05-15 22:42:43 -0400 |
commit | 758c7bd466ea8751e8ae98a6da6b8110ec9cbd98 (patch) | |
tree | 65dec6332adf064f085852379f05e3fecba02d69 /configure.in | |
parent | f7af368f2582fd6962833c0da664aa0ece24dd97 (diff) | |
download | gcc-758c7bd466ea8751e8ae98a6da6b8110ec9cbd98.zip gcc-758c7bd466ea8751e8ae98a6da6b8110ec9cbd98.tar.gz gcc-758c7bd466ea8751e8ae98a6da6b8110ec9cbd98.tar.bz2 |
* configure.in: Special case powerpc*-*-aix* target_makefile_frag.
From-SVN: r33917
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 3 insertions, 0 deletions
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" ;; |