mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-28 04:43:54 -06:00

Newer compilers might end up putting some data in .data.rel.local which was getting skipped resulting in hilarious confusion on some tests. Fix that. Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20210401102530.12030-6-alex.bennee@linaro.org>
23 lines
196 B
Text
23 lines
196 B
Text
SECTIONS {
|
|
. = 0x100000;
|
|
|
|
.text : {
|
|
__load_st = .;
|
|
*(.head)
|
|
*(.text)
|
|
}
|
|
|
|
.rodata : {
|
|
*(.rodata)
|
|
}
|
|
|
|
.data : {
|
|
*(.data*)
|
|
__load_en = .;
|
|
}
|
|
|
|
.bss : {
|
|
*(.bss)
|
|
__bss_en = .;
|
|
}
|
|
}
|