]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
configure.in (host_makefile_frag): Use mh-ia64pic on IA-64 hosts.
authorAndrew Haley <aph@cygnus.com>
Fri, 21 Jul 2000 14:19:36 +0000 (14:19 +0000)
committerAndrew Haley <aph@gcc.gnu.org>
Fri, 21 Jul 2000 14:19:36 +0000 (14:19 +0000)
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

ChangeLog
configure.in

index 41dfed564c486e67088af526b88c167861f9940e..9a6972e46d23b24da8f6f04a213711a5cc077eed 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+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.
+
 Fri Jul 14 18:13:23 2000  Mark P Mitchell  <mark@codesourcery.com>
 
        * config/mh-irix6 (CC): Don't set it.
index 8059793d12910034190082bda776f4efc832231a..5aabef8eb2a9b773c3b0da35aff35263396f3d0c 100644 (file)
@@ -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.
       ;;