mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-26 05:20:30 +00:00
27 lines
225 B
Scala
27 lines
225 B
Scala
cat <<EOF
|
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
|
OUTPUT_ARCH(${ARCH})
|
|
|
|
|
|
SECTIONS
|
|
{
|
|
.text :
|
|
{
|
|
*(.text)
|
|
*(.strings)
|
|
_etext = .;
|
|
*(.data)
|
|
_edata = .;
|
|
*(.bss)
|
|
*(COMMON)
|
|
_end = .;
|
|
|
|
}
|
|
|
|
}
|
|
EOF
|
|
|
|
|
|
|
|
|