mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
12 lines
233 B
Plaintext
12 lines
233 B
Plaintext
|
/* Simple script for testing relaxation */
|
||
|
|
||
|
OUTPUT_FORMAT("elf32-littlenios2", "elf32-littlenios2", "elf32-littlenios2")
|
||
|
OUTPUT_ARCH(nios2)
|
||
|
ENTRY(_start)
|
||
|
SECTIONS
|
||
|
{
|
||
|
_start = .;
|
||
|
text2 0 : { *(text2) }
|
||
|
text1 0x8000 : { *(text1) }
|
||
|
}
|