bug-binutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug ld/3206] Segmentation fault when using Linux kernel link script


From: hjl at lucon dot org
Subject: [Bug ld/3206] Segmentation fault when using Linux kernel link script
Date: 14 Sep 2006 19:05:01 -0000

------- 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.




reply via email to

[Prev in Thread] Current Thread [Next in Thread]