ld: Sections overlapping
Posted: Thu Mar 19, 2009 7:46 am
Hello,
What the hell is the ".eh_frame" section???
Error:
i586-elf-ld: section .eh_frame [00000 -> 00083] overlaps
section TEXT [00000 -> 167dff]
How can I make the linker just to ignore the ".eh_frame" section?
TIA
Sebihepp
What the hell is the ".eh_frame" section???
Code: Select all
ENTRY(start)
INPUT(bootloader.bin boot.bin)
OUTPUT(reserved.bin)
OUTPUT_FORMAT(binary)
SECTIONS
{
TEXT 0x10000 : AT (0)
{
*(.text)
*(.data)
*(.bss)
*(.rodata)
FILL(0x00);
. = ALIGN(1474560-512+0x10000);
}
}
i586-elf-ld: section .eh_frame [00000 -> 00083] overlaps
section TEXT [00000 -> 167dff]
How can I make the linker just to ignore the ".eh_frame" section?
TIA
Sebihepp