* syms.c (stt): Add .rdata and .rodata.
[deliverable/binutils-gdb.git] / ld / testsuite / ld.scripts / script.t
1 SECTIONS
2 {
3 .text 0x100 : {
4 text_start = .;
5 *(.text)
6 text_end = .;
7 }
8 . = 0x1000;
9 .data : {
10 data_start = .;
11 *(.data)
12 data_end = .;
13 }
14 }
This page took 0.030809 seconds and 4 git commands to generate.