brintos

brintos / llvm-project-archived public Read only

0
0
Text · 206 B · c32ffd6 Raw
11 lines · plain
1# Linker script used by jump-table-pic-conflict.s test.2# .rodata needs to appear before .text3 4SECTIONS5{6  . = 0x201120;7  .rodata : { *(.rodata) }8  .eh_frame : { *(.eh_frame) }9  .text : { *(.text) }10}11