blob: 48f71d6d2fc39b02f41f069e461e149f4cc82387 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* Final linker script klipper.elf on the PRU */
SECTIONS
{
/* binutils on the PRU doesn't support --gc-sections so manually
* discard the .compile_time_request section */
/* and GDB extended debugging information */
/DISCARD/ : {
*( .compile_time_request )
*( .gnu.debug* )
}
}
|