diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2015-08-13 01:20:02 +0300 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2015-10-04 17:27:27 +0100 |
commit | 3570732c6494ab16d844b83922511af96cab489c (patch) | |
tree | 7496432b3192b93afcaf55aecd70c0d77e42d5ce /package/gcc | |
parent | 5b84265f1c29504724d0682c692f22ef02108a9f (diff) | |
download | buildroot-3570732c6494ab16d844b83922511af96cab489c.tar.gz buildroot-3570732c6494ab16d844b83922511af96cab489c.zip |
xtensa: switch from text-section-literals to auto-litpools
Now that both binutils and gcc support auto-litpools use that option
instead of text-section-literals to be able to compile huge functions.
Fixes:
http://autobuild.buildroot.net/results/dd384fe0ef02a4205bea66a4a16ca2062afe53b4/
http://autobuild.buildroot.net/results/87dd357a4b883ea3cd75546b3d63c4c28245beee/
http://autobuild.buildroot.net/results/b5bca00dec1ecb118c7fb9c10dee74c94809c831/
and many others.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/gcc')
-rw-r--r-- | package/gcc/gcc.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/gcc/gcc.mk b/package/gcc/gcc.mk index ead3e150c6..9025cdf6f9 100644 --- a/package/gcc/gcc.mk +++ b/package/gcc/gcc.mk @@ -113,11 +113,11 @@ GCC_COMMON_TARGET_CXXFLAGS = $(filter-out -Os,$(GCC_COMMON_TARGET_CXXFLAGS)) endif endif -# Xtensa libgcc can't be built with -mtext-section-literals +# Xtensa libgcc can't be built with -mauto-litpools # because of the trick used to generate .init/.fini sections. ifeq ($(BR2_xtensa),y) -GCC_COMMON_TARGET_CFLAGS = $(filter-out -mtext-section-literals,$(TARGET_CFLAGS)) -GCC_COMMON_TARGET_CXXFLAGS = $(filter-out -mtext-section-literals,$(TARGET_CXXFLAGS)) +GCC_COMMON_TARGET_CFLAGS = $(filter-out -mauto-litpools,$(TARGET_CFLAGS)) +GCC_COMMON_TARGET_CXXFLAGS = $(filter-out -mauto-litpools,$(TARGET_CXXFLAGS)) endif # Propagate options used for target software building to GCC target libs |