config/
authorkrebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 4 Jan 2012 11:41:06 +0000 (11:41 +0000)
committerkrebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4>
Wed, 4 Jan 2012 11:41:06 +0000 (11:41 +0000)
2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

PR bootstrap/51734
* picflag.m4: Remove s390 case statement.

gcc/
2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

* configure: Regenerate.

libada/
2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

* configure: Regenerate.

libgcc/
2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

* configure: Regenerate.
* config/s390/t-crtstuff: Remove -fPIC.

libiberty/
2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>

* configure: Regenerate.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@182868 138bc75d-0d04-0410-961f-82ee72b054a4

config/ChangeLog
config/picflag.m4
gcc/ChangeLog
gcc/configure
libada/ChangeLog
libada/configure
libgcc/ChangeLog
libgcc/config/s390/t-crtstuff
libgcc/configure
libiberty/ChangeLog
libiberty/configure

index 8012167..840969f 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
+
+       PR bootstrap/51734
+       * picflag.m4: Remove s390 case statement.
+
 2011-12-20  Andreas Schwab  <schwab@linux-m68k.org>
 
        * warnings.m4 (ACX_PROG_CC_WARNING_OPTS): Avoid leading dash in
index f6f1b44..a720e25 100644 (file)
@@ -51,9 +51,6 @@ case "${$2}" in
     m68k-*-*)
        $1=-fpic
        ;;
-    s390*-*-*)
-       $1=-fpic
-       ;;
     # FIXME: Override -fPIC default in libgcc only? 
     sh-*-linux* | sh[[2346lbe]]*-*-linux*)
        $1=-fpic
index 78e69a7..f359bd1 100644 (file)
@@ -1,3 +1,7 @@
+2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
+
+       * configure: Regenerate.
+
 2012-01-04  Richard Guenther  <rguenther@suse.de>
 
        PR tree-optimization/49651
index b17c30a..ba6156f 100755 (executable)
@@ -4925,9 +4925,6 @@ case "${target}" in
     m68k-*-*)
        PICFLAG_FOR_TARGET=-fpic
        ;;
-    s390*-*-*)
-       PICFLAG_FOR_TARGET=-fpic
-       ;;
     # FIXME: Override -fPIC default in libgcc only?
     sh-*-linux* | sh[2346lbe]*-*-linux*)
        PICFLAG_FOR_TARGET=-fpic
@@ -18109,7 +18106,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 18112 "configure"
+#line 18109 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
@@ -18215,7 +18212,7 @@ else
   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
   lt_status=$lt_dlunknown
   cat > conftest.$ac_ext <<_LT_EOF
-#line 18218 "configure"
+#line 18215 "configure"
 #include "confdefs.h"
 
 #if HAVE_DLFCN_H
index 1726922..c60b93d 100644 (file)
@@ -1,3 +1,7 @@
+2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
+
+       * configure: Regenerate.
+
 2011-11-12  Iain Sandoe  <iains@gcc.gnu.org>
 
        * Makefile.in: Change dependency on oscons to depend on the generator
index 1e0ceef..8303c56 100755 (executable)
@@ -2868,9 +2868,6 @@ case "${host}" in
     m68k-*-*)
        PICFLAG=-fpic
        ;;
-    s390*-*-*)
-       PICFLAG=-fpic
-       ;;
     # FIXME: Override -fPIC default in libgcc only?
     sh-*-linux* | sh[2346lbe]*-*-linux*)
        PICFLAG=-fpic
index 47305ca..e14c4b0 100644 (file)
@@ -1,3 +1,8 @@
+2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
+
+       * configure: Regenerate.
+       * config/s390/t-crtstuff: Remove -fPIC.
+
 2012-01-02  Jonathan Wakely  <jwakely.gcc@gmail.com>
 
        PR bootstrap/51006
index f90e35b..d738673 100644 (file)
@@ -2,4 +2,4 @@
 # because then __FRAME_END__ might not be the last thing in .eh_frame
 # section.
 CRTSTUFF_T_CFLAGS += -fno-asynchronous-unwind-tables
-CRTSTUFF_T_CFLAGS_S += -fno-asynchronous-unwind-tables -fPIC
+CRTSTUFF_T_CFLAGS_S += -fno-asynchronous-unwind-tables
index e1c58f5..f14605e 100644 (file)
@@ -2322,9 +2322,6 @@ case "${host}" in
     m68k-*-*)
        PICFLAG=-fpic
        ;;
-    s390*-*-*)
-       PICFLAG=-fpic
-       ;;
     # FIXME: Override -fPIC default in libgcc only?
     sh-*-linux* | sh[2346lbe]*-*-linux*)
        PICFLAG=-fpic
index 34d6b6a..344f18d 100644 (file)
@@ -1,3 +1,7 @@
+2012-01-04  Andreas Krebbel  <Andreas.Krebbel@de.ibm.com>
+
+       * configure: Regenerate.
+
 2012-01-02  Jakub Jelinek  <jakub@redhat.com>
 
        * make-relative-prefix.c (make_relative_prefix_1): Avoid
index 9bdea73..b0edb0b 100755 (executable)
@@ -4899,9 +4899,6 @@ case "${host}" in
     m68k-*-*)
        PICFLAG=-fpic
        ;;
-    s390*-*-*)
-       PICFLAG=-fpic
-       ;;
     # FIXME: Override -fPIC default in libgcc only?
     sh-*-linux* | sh[2346lbe]*-*-linux*)
        PICFLAG=-fpic