1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-13 20:28:59 +03:00
openwrt-xburst/toolchain/gcc/patches/4.2.4/901-avr32_add_mno-pic.patch
kaloz 54a1da8d7c gcc 4.2.4 support
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@11310 3c298f89-4303-0410-b956-a3cf2f4a3e73
2008-05-31 18:45:07 +00:00

26 lines
956 B
Diff

Index: gcc-4.2.3/gcc/config/avr32/avr32.opt
===================================================================
--- gcc-4.2.3.orig/gcc/config/avr32/avr32.opt 2008-05-21 13:45:54.165287871 +0200
+++ gcc-4.2.3/gcc/config/avr32/avr32.opt 2008-05-21 13:45:57.194288771 +0200
@@ -71,3 +71,6 @@
Target Report Var(avr32_imm_in_const_pool) Init(-1)
Put large immediates in constant pool. This is enabled by default for archs with insn-cache.
+mno-pic
+Target Report RejectNegative Mask(NO_PIC)
+Do not generate position-independent code.
Index: gcc-4.2.3/gcc/config/avr32/avr32.c
===================================================================
--- gcc-4.2.3.orig/gcc/config/avr32/avr32.c 2008-05-21 13:45:54.145288116 +0200
+++ gcc-4.2.3/gcc/config/avr32/avr32.c 2008-05-21 13:45:57.202289511 +0200
@@ -230,6 +230,9 @@
avr32_imm_in_const_pool = 0;
}
+ if (TARGET_NO_PIC)
+ flag_pic = 0;
+
avr32_add_gc_roots ();
}