mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-09 18:53:00 +00:00
27 lines
225 B
Python
27 lines
225 B
Python
|
cat <<EOF
|
||
|
OUTPUT_FORMAT("${OUTPUT_FORMAT}")
|
||
|
OUTPUT_ARCH(${ARCH})
|
||
|
|
||
|
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text :
|
||
|
{
|
||
|
*(.text)
|
||
|
*(.strings)
|
||
|
_etext = .;
|
||
|
*(.data)
|
||
|
_edata = .;
|
||
|
*(.bss)
|
||
|
*(COMMON)
|
||
|
_end = .;
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|
||
|
EOF
|
||
|
|
||
|
|
||
|
|
||
|
|