diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2012-09-04 04:09:55 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-09-04 22:04:00 +0200 |
commit | 2bb39acb6adc90a9d9264e19d3ac3c5affcbb528 (patch) | |
tree | 8fb1e0c718787ac242dd441b76cbbe4dd73d66ba | |
parent | 8e55f03a545e12ef3c149541b8aa25b31c3e927a (diff) | |
download | buildroot-novena-2bb39acb6adc90a9d9264e19d3ac3c5affcbb528.tar.gz buildroot-novena-2bb39acb6adc90a9d9264e19d3ac3c5affcbb528.zip |
mips64: remove toolchain kludge
-mno-abicalls is an old kludge for some (probably) old issue.
Remove it since it's actually harmful, static busybox doesn't build with
it for a modern-ish toolchain (defaults as of this commit, uClibc
0.9.33.2 + gcc 4.5.4).
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/Makefile.in | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/package/Makefile.in b/package/Makefile.in index 21b8634d7..340e38799 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -87,10 +87,6 @@ endif TARGET_CFLAGS=$(TARGET_ABI) $(TARGET_OPTIMIZATION) $(TARGET_DEBUGGING) -ifeq ($(findstring yy,$(BR2_mips)$(BR2_MIPS_NABI64)),yy) -TARGET_CFLAGS+=-fno-pic -mno-abicalls -endif - ifeq ($(BR2_LARGEFILE),y) TARGET_CFLAGS+=-D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64 endif |