* scripttempl/aout.sc: Add PROVIDE (__stack = 0) so I can use it
in m68k/crt0.S without things blowing up.
This commit is contained in:
parent
7508666f50
commit
10533b5b48
2 changed files with 9 additions and 5 deletions
|
@ -1,4 +1,9 @@
|
|||
Fri Apr 12 16:40:56 1996 Rob Savoye <rob@chinadoll>
|
||||
Mon Apr 15 14:50:56 1996 Rob Savoye <rob@chinadoll.cygnus.com>
|
||||
|
||||
* scripttempl/aout.sc: Add PROVIDE (__stack = 0) so I can use it
|
||||
in m68k/crt0.S without things blowing up.
|
||||
|
||||
Fri Apr 12 16:40:56 1996 Rob Savoye <rob@chinadoll.cygnus.com>
|
||||
|
||||
* scripttempl/m68kcoff.sc: Remove default address for .data so
|
||||
.text, .data, and .bss are all sequential.
|
||||
|
|
|
@ -1,15 +1,14 @@
|
|||
cat <<EOF
|
||||
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
||||
OUTPUT_ARCH(${ARCH})
|
||||
|
||||
${RELOCATING+${LIB_SEARCH_DIRS}}
|
||||
${STACKZERO+${RELOCATING+${STACKZERO}}}
|
||||
${SHLIB_PATH+${RELOCATING+${SHLIB_PATH}}}
|
||||
${RELOCATING+${EXECUTABLE_SYMBOLS}}
|
||||
PROVIDE (__stack = 0);
|
||||
SECTIONS
|
||||
{
|
||||
${CREATE_SHLIB-${RELOCATING+. = ${TEXT_START_ADDR};}}
|
||||
${CREATE_SHLIB+${RELOCATING+. = SIZEOF_HEADERS;}}
|
||||
.text :
|
||||
.text ${TEXT_START_ADDR} :
|
||||
{
|
||||
CREATE_OBJECT_SYMBOLS
|
||||
*(.text)
|
||||
|
|
Loading…
Add table
Reference in a new issue