]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
Patches from H.J. Lu for alpha-linux -fPIC --enable-shared problem.
authorJim Wilson <wilson@gcc.gnu.org>
Thu, 11 Sep 1997 23:44:33 +0000 (16:44 -0700)
committerJim Wilson <wilson@gcc.gnu.org>
Thu, 11 Sep 1997 23:44:33 +0000 (16:44 -0700)
* Makefile.in (local-distclean): Also remove mh-frag mt-frag.
* configure.in (skipdirs): Add target-librx for Linux.
(alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
* mh-elfalphapic, mt-elfalphapic: New files.

From-SVN: r15419

ChangeLog
Makefile.in
config/ChangeLog
config/mh-elfalphapic [new file with mode: 0644]
config/mt-elfalphapic [new file with mode: 0644]
configure.in

index 8c04a1de4311565e20c8fa891364b10a397536df..958586250b6b5da171ef547fa3c2db02302ac179 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Thu Sep 11 16:40:46 1997  H.J. Lu  (hjl@gnu.ai.mit.edu)
+
+       * Makefile.in (local-distclean): Also remove mh-frag mt-frag.
+
+       * configure.in (skipdirs): Add target-librx for Linux.
+       (alpha-*-linux*): Use config/mh-elfalphapic and config/mt-elfalphapic.
+
 Wed Sep 10 21:29:54 1997  Jeffrey A Law  (law@cygnus.com)
 
        * Makefile.in (bootstrap): New target.
index ee4a50dda2c3201f8d19d614bf947d16923df13c..5ee567dc874de63ad7e7e3fd3c94efc6a5458367 100644 (file)
@@ -893,7 +893,7 @@ local-clean:
        -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E
 
 local-distclean:
-       -rm -f Makefile config.status config.cache
+       -rm -f Makefile config.status config.cache mh-frag mt-frag
        -if [ "$(TARGET_SUBDIR)" != "." ]; then \
          rm -rf $(TARGET_SUBDIR); \
        else true; fi
index b68a85c7a214e6daca833ffe82031cc20e31a88d..51fa2c24dd5080204b742a5b5ac5b801822fc509 100644 (file)
@@ -1,3 +1,7 @@
+Thu Sep 11 16:43:27 1997  Jim Wilson  <wilson@cygnus.com>
+
+       * mh-elfalphapic, mt-elfalphapic: New files.
+
 Wed Jul 23 12:32:18 1997  Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>
 
        * mh-go32 (CFLAGS): Don't set -fno-omit-frame-pointer.
diff --git a/config/mh-elfalphapic b/config/mh-elfalphapic
new file mode 100644 (file)
index 0000000..35cf2c8
--- /dev/null
@@ -0,0 +1 @@
+PICFLAG=-fPIC
diff --git a/config/mt-elfalphapic b/config/mt-elfalphapic
new file mode 100644 (file)
index 0000000..35b8c9e
--- /dev/null
@@ -0,0 +1 @@
+PICFLAG_FOR_TARGET=-fPIC
index 642461cf929c4706d1cadfa1b985118d884d340d..f48c2a91698fb6894fda93762869ca9f8543ace3 100644 (file)
@@ -192,6 +192,7 @@ if [ x${shared} = xyes ]; then
     i[3456]86-*)       waugh=config/mh-x86pic ;;
     sparc64-*)         waugh=config/mh-sparcpic ;;
     powerpc*-*)                waugh=config/mh-ppcpic ;;
+    alpha-*-linux*)     waugh=config/mh-elfalphapic ;;
     *)                 waugh=config/mh-${host_cpu}pic ;;
   esac
   if [ -f ${srcdir}/${waugh} ]; then
@@ -455,6 +456,10 @@ case "${target}" in
     # but don't build gdb
     noconfigdirs="$noconfigdirs gdb target-libg++ target-libstdc++ target-libio target-librx"
     ;;
+  *-*-linux*)
+    # linux has rx in libc
+    skipdirs="$skipdirs target-librx"
+    ;;
   *-*-cygwin32)
     target_configdirs="$target_configdirs target-winsup"
     noconfigdirs="$noconfigdirs expect target-libgloss"
@@ -759,6 +764,7 @@ if [ x${shared} = xyes ]; then
     hppa*)             target_makefile_frag=config/mt-papic ;;
     i[3456]86-*)       target_makefile_frag=config/mt-x86pic ;;
     powerpc*-*)                target_makefile_frag=config/mt-ppcpic ;;
+    alpha-*-linux*)    target_makefile_frag=config/mt-elfalphapic ;;
     *)                 target_makefile_frag=config/mt-${target_cpu}pic ;;
   esac
 fi