old-cross-binutils/ld/testsuite/ld.scripts/script.t
Ian Lance Taylor f81eadb499 * config/default.exp: Set variables as and nm. Create tmpdir if
it does not already exist.
	* ld.bootstrap/bootstrap.exp: Don't create tmpdir here.
	* ld.cdtest/cdtest.exp: Likewise.
	* ld.scripts/defined.exp: Likewise.  Also, don't set as and nm
	here.  Change perror for no variables found to fail.
	* ld.scripts/script.exp: New test.
	* ld.scripts/script.t, ld.scripts/script.s: New files.
1994-09-28 16:21:32 +00:00

14 lines
168 B
Perl

SECTIONS
{
.text 0x100 : {
text_start = .;
*(.text)
text_end = .;
}
. = 0x1000;
.data : {
data_start = .;
*(.data)
data_end = .;
}
}