1NOCROSSREFS ( .text .data )
2x = ABSOLUTE(x);
3SECTIONS
4{
5  .text : { *(.text) }
6  .data : { *(.data) }
7  /DISCARD/ : { *(*) }
8}
9