------- Additional Comments From hjl at lucon dot org 2006-09-14 19:05 -------
It is because -fasynchronous-unwind-tables adds .ARM.exidx sections.
Please try to change kernel linker script from
/DISCARD/ : { /* Exit code and data */
*(.exit.text)
*(.exit.data)
*(.exitcall.exit)
}
to
/DISCARD/ : { /* Exit code and data */
*(.exit.text)
*(.ARM.exidx.exit.text)
^^^^^^^^^^^^^^^^^^^^^^^ A new line.
*(.exit.data)
*(.exitcall.exit)
}
--
http://sourceware.org/bugzilla/show_bug.cgi?id=3206
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
_______________________________________________
bug-binutils mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/bug-binutils