diff options
author | Andrew Haley <aph@cygnus.com> | 2000-07-21 14:19:36 +0000 |
---|---|---|
committer | Andrew Haley <aph@gcc.gnu.org> | 2000-07-21 14:19:36 +0000 |
commit | 7b7792d51b2c954599ee37cdd747ff0c8c1427ab (patch) | |
tree | 46473c8cb68e300fcc8eda14129c591eed3deec8 /configure.in | |
parent | 11444a0cf1e15929f9d8d733e45b2b885229ac47 (diff) | |
download | gcc-7b7792d51b2c954599ee37cdd747ff0c8c1427ab.tar.gz |
configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
2000-07-12 Andrew Haley <aph@cygnus.com>
* configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
(target_makefile_frag): Use mt-ia64pic on IA-64 targets.
From-SVN: r35174
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 8059793d129..5aabef8eb2a 100644 --- a/configure.in +++ b/configure.in @@ -306,6 +306,9 @@ if [ x${shared} = xyes ]; then i[3456]86-*-*) host_makefile_frag="${host_makefile_frag} config/mh-x86pic" ;; + ia64-*-*) + host_makefile_frag="${host_makefile_frag} config/mh-ia64pic" + ;; sparc64-*-*) host_makefile_frag="${host_makefile_frag} config/mh-sparcpic" ;; @@ -1024,6 +1027,9 @@ if [ x${shared} = xyes ]; then i[3456]86-*) target_makefile_frag="${target_makefile_frag} config/mt-x86pic" ;; + ia64-*) + target_makefile_frag="${target_makefile_frag} config/mt-ia64pic" + ;; powerpc*-*-aix*) # We don't want -fPIC on AIX. ;; |