diff options
author | Walter Lee <walt@tilera.com> | 2013-03-26 04:34:45 +0000 |
---|---|---|
committer | Walter Lee <walt@gcc.gnu.org> | 2013-03-26 04:34:45 +0000 |
commit | a6406324aef8248b9edfed42e16ec3be1c5e1078 (patch) | |
tree | 70aed9dc4db9c9eb4dd3a14a5053f2d08745b746 /libgcc | |
parent | dd884525bb9ea7686aff404967e3f9907e28809b (diff) | |
download | gcc-a6406324aef8248b9edfed42e16ec3be1c5e1078.zip gcc-a6406324aef8248b9edfed42e16ec3be1c5e1078.tar.gz gcc-a6406324aef8248b9edfed42e16ec3be1c5e1078.tar.bz2 |
t-crtstuff: Add -fno-asynchronous-unwind-tables -mcmodel=large to CRTSTUFF_T_CFLAGS_S variable.
* config/tilegx/t-crtstuff: Add -fno-asynchronous-unwind-tables
-mcmodel=large to CRTSTUFF_T_CFLAGS_S variable.
From-SVN: r197083
Diffstat (limited to 'libgcc')
-rw-r--r-- | libgcc/ChangeLog | 5 | ||||
-rw-r--r-- | libgcc/config/tilegx/t-crtstuff | 4 |
2 files changed, 9 insertions, 0 deletions
diff --git a/libgcc/ChangeLog b/libgcc/ChangeLog index d7bab0e..fa8bffd 100644 --- a/libgcc/ChangeLog +++ b/libgcc/ChangeLog @@ -1,3 +1,8 @@ +2013-03-26 Walter Lee <walt@tilera.com> + + * config/tilegx/t-crtstuff: Add -fno-asynchronous-unwind-tables + -mcmodel=large to CRTSTUFF_T_CFLAGS_S variable. + 2013-03-25 Kai Tietz <ktietz@redhat.com> * config/i386/cygwin.S: Replace use of _WIN64 by __x86_64__. diff --git a/libgcc/config/tilegx/t-crtstuff b/libgcc/config/tilegx/t-crtstuff index eddc45c..870318c 100644 --- a/libgcc/config/tilegx/t-crtstuff +++ b/libgcc/config/tilegx/t-crtstuff @@ -2,3 +2,7 @@ # 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 + +# Compile crtbeginS.o and crtendS.o with -mcmodel=large +CRTSTUFF_T_CFLAGS_S += -mcmodel=large |