2017-05-07 04:47:04 +03:00
|
|
|
/* 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 */
|
2021-05-19 19:35:13 +03:00
|
|
|
/* and GDB extended debugging information */
|
2017-05-07 04:47:04 +03:00
|
|
|
/DISCARD/ : {
|
|
|
|
*( .compile_time_request )
|
2021-05-19 19:35:13 +03:00
|
|
|
*( .gnu.debug* )
|
2017-05-07 04:47:04 +03:00
|
|
|
}
|
|
|
|
}
|