diff options
author | krebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-04 19:05:36 +0000 |
---|---|---|
committer | krebbel <krebbel@138bc75d-0d04-0410-961f-82ee72b054a4> | 2011-11-04 19:05:36 +0000 |
commit | 994652eca191c8909c2cb02880209b383477adfa (patch) | |
tree | 7de2deb8c85846045a082882c61fe68377a2a954 | |
parent | 72f8e79f1273d2665919322605348fd38877ecee (diff) | |
download | gcc-994652eca191c8909c2cb02880209b383477adfa.tar.gz |
2011-11-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com>
* config/s390/t-crtstuff: Add -fPIC to CRTSTUFF_T_CFLAGS_S
variable.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@180976 138bc75d-0d04-0410-961f-82ee72b054a4
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config/s390/t-crtstuff | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index df6ad30c99b..ec06a097bf7 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2011-11-04 Andreas Krebbel <Andreas.Krebbel@de.ibm.com> + + * config/s390/t-crtstuff: Add -fPIC to CRTSTUFF_T_CFLAGS_S + variable. + 2011-11-04 Georg-Johann Lay <avr@gjlay.de> PR target/50931 diff --git a/libgcc/config/s390/t-crtstuff b/libgcc/config/s390/t-crtstuff index 92e87b2da7e..f90e35b7220 100644 --- a/libgcc/config/s390/t-crtstuff +++ b/libgcc/config/s390/t-crtstuff @@ -2,5 +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 - +CRTSTUFF_T_CFLAGS_S += -fno-asynchronous-unwind-tables -fPIC |