mirror of
https://review.haiku-os.org/buildtools
synced 2025-01-19 12:51:22 +01:00
6809759e16
git-svn-id: file:///srv/svn/repos/haiku/buildtools/trunk@15075 a95241bf-73f2-0310-859d-f6bbb57e9c96
19 lines
481 B
Bash
19 lines
481 B
Bash
# Note: this is sourced in turn by shlelf64.sh
|
|
OUTPUT_FORMAT=${OUTPUT_FORMAT-"elf64-sh64"}
|
|
ELFSIZE=64
|
|
|
|
EXTRA_EM_FILE=
|
|
. ${srcdir}/emulparams/shelf32.sh
|
|
|
|
# We do not need .cranges
|
|
test -z "$CREATE_SHLIB" && OTHER_SECTIONS="
|
|
.stack ${RELOCATING-0}${RELOCATING+(DEFINED(_stack) ? _stack : ALIGN (0x40000) + 0x40000)} :
|
|
{
|
|
${RELOCATING+_stack = .;}
|
|
*(.stack)
|
|
LONG(0xdeaddead)
|
|
}
|
|
"
|
|
# We do not need .stack for shared library.
|
|
test -n "$CREATE_SHLIB" && OTHER_SECTIONS=""
|