mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-21 18:11:31 +00:00
* scripttempl/hppaelf.sc (.text): Place unwind descriptors in the
text segment.
This commit is contained in:
parent
f32fc5f979
commit
831d7ac47c
12
ld/ChangeLog
12
ld/ChangeLog
@ -1,5 +1,17 @@
|
|||||||
|
Wed Nov 16 10:03:03 1994 Jeff Law (law@snake.cs.utah.edu)
|
||||||
|
|
||||||
|
* scripttempl/hppaelf.sc (.text): Place unwind descriptors in the
|
||||||
|
text segment.
|
||||||
|
|
||||||
Sat Nov 12 15:55:56 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
Sat Nov 12 15:55:56 1994 Ian Lance Taylor (ian@tweedledumb.cygnus.com)
|
||||||
|
|
||||||
|
Patches from Eric Youngdale <eric@aib.com>:
|
||||||
|
* ldlang.c (lang_finish): Don't warn if entry symbol not found
|
||||||
|
when generating a shared library.
|
||||||
|
* emultempl/elf32.em (gld${EMULATION_NAME}_place_orphan): Warn if
|
||||||
|
attempting to place an orphaned relocation section when generating
|
||||||
|
a dynamically linked object.
|
||||||
|
|
||||||
* scripttempl/elf.sc: Add ENTRY(${ENTRY}), and default ${ENTRY} to
|
* scripttempl/elf.sc: Add ENTRY(${ENTRY}), and default ${ENTRY} to
|
||||||
_start.
|
_start.
|
||||||
|
|
||||||
|
@ -3,7 +3,6 @@ OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|||||||
OUTPUT_ARCH(${ARCH})
|
OUTPUT_ARCH(${ARCH})
|
||||||
ENTRY("\$START\$")
|
ENTRY("\$START\$")
|
||||||
${RELOCATING+${LIB_SEARCH_DIRS}}
|
${RELOCATING+${LIB_SEARCH_DIRS}}
|
||||||
${RELOCATING+___stack_zero = ABSOLUTE(0x2000);}
|
|
||||||
SECTIONS
|
SECTIONS
|
||||||
{
|
{
|
||||||
.text ${RELOCATING+${TEXT_START_ADDR}}:
|
.text ${RELOCATING+${TEXT_START_ADDR}}:
|
||||||
@ -12,10 +11,11 @@ SECTIONS
|
|||||||
CREATE_OBJECT_SYMBOLS
|
CREATE_OBJECT_SYMBOLS
|
||||||
*(.PARISC.stubs)
|
*(.PARISC.stubs)
|
||||||
*(.text)
|
*(.text)
|
||||||
|
*(.PARISC.unwind)
|
||||||
${RELOCATING+etext = .};
|
${RELOCATING+etext = .};
|
||||||
${RELOCATING+_etext = .};
|
${RELOCATING+_etext = .};
|
||||||
}
|
}
|
||||||
.data ${RELOCATING+ 0x40000000 } :
|
.data 0x40000000 :
|
||||||
{
|
{
|
||||||
${RELOCATING+ . = . + 0x1000 };
|
${RELOCATING+ . = . + 0x1000 };
|
||||||
${RELOCATING+__data_start = .};
|
${RELOCATING+__data_start = .};
|
||||||
@ -24,7 +24,7 @@ SECTIONS
|
|||||||
${RELOCATING+edata = .};
|
${RELOCATING+edata = .};
|
||||||
${RELOCATING+_edata = .};
|
${RELOCATING+_edata = .};
|
||||||
}
|
}
|
||||||
.bss ${RELOCATING+SIZEOF(.data) + ADDR(.data)} :
|
.bss 0x40000000 ${RELOCATING++SIZEOF(.data)} :
|
||||||
{
|
{
|
||||||
*(.bss)
|
*(.bss)
|
||||||
*(COMMON)
|
*(COMMON)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user