diff options
author | John Voltz <john.voltz@gmail.com> | 2008-03-21 11:21:02 +0000 |
---|---|---|
committer | John Voltz <john.voltz@gmail.com> | 2008-03-21 11:21:02 +0000 |
commit | 577cec7bc6d6a1c2b914d0061cdc3cd2ac03e7f3 (patch) | |
tree | f9ba9004bf358831109e8eb1c029a70e393cbbb2 /toolchain/gcc/4.2.1/901-avr32-add-mno-pic.patch | |
parent | 7c54beb870cc7fb50c8a77689dab589d7cb90fb8 (diff) | |
download | buildroot-novena-577cec7bc6d6a1c2b914d0061cdc3cd2ac03e7f3.tar.gz buildroot-novena-577cec7bc6d6a1c2b914d0061cdc3cd2ac03e7f3.zip |
current avr32 gcc patches break x86 and possibly other systems. moving bad patches to separate directory until a proper fix is made. discovered by jacmet and Dr. Nigel Kukard
Diffstat (limited to 'toolchain/gcc/4.2.1/901-avr32-add-mno-pic.patch')
-rw-r--r-- | toolchain/gcc/4.2.1/901-avr32-add-mno-pic.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/toolchain/gcc/4.2.1/901-avr32-add-mno-pic.patch b/toolchain/gcc/4.2.1/901-avr32-add-mno-pic.patch deleted file mode 100644 index c21450a9a..000000000 --- a/toolchain/gcc/4.2.1/901-avr32-add-mno-pic.patch +++ /dev/null @@ -1,25 +0,0 @@ -Index: gcc/gcc/config/avr32/avr32.opt -=================================================================== ---- gcc/gcc/config/avr32/avr32.opt (revision 31583) -+++ gcc/gcc/config/avr32/avr32.opt (working copy) -@@ -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/gcc/config/avr32/avr32.c -=================================================================== ---- gcc/gcc/config/avr32/avr32.c (revision 31583) -+++ gcc/gcc/config/avr32/avr32.c (working copy) -@@ -230,6 +230,9 @@ - avr32_imm_in_const_pool = 0; - } - -+ if (TARGET_NO_PIC) -+ flag_pic = 0; -+ - avr32_add_gc_roots (); - } - |