mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-01-12 12:16:04 +08:00
17 lines
184 B
Plaintext
17 lines
184 B
Plaintext
|
/* Script for ld testsuite */
|
||
|
OUTPUT_ARCH(arm)
|
||
|
ENTRY(_start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
.text :
|
||
|
{
|
||
|
*(.text)
|
||
|
*(.after1)
|
||
|
*(.after2)
|
||
|
*(.after3)
|
||
|
*(.after4)
|
||
|
*(.after5)
|
||
|
} =0
|
||
|
}
|
||
|
|