Treat common symbol in executable as definition
[deliverable/binutils-gdb.git] / ld / testsuite / ld-elf / maxpage5.t
1 OUTPUT_FORMAT("elf32-i386")
2 OUTPUT_ARCH(i386)
3 ENTRY(_entry)
4 PHDRS
5 {
6 data PT_LOAD;
7 note PT_NOTE;
8 }
9 SECTIONS
10 {
11 .text : { *(.text) } :data
12 .foo : { *(.foo) } :data
13 .note : { *(.note) } :note
14 /DISCARD/ : { *(*) }
15 }
This page took 0.056561 seconds and 4 git commands to generate.