diff options
author | Sergey Alirzaev <zl29ah@gmail.com> | 2021-05-19 19:35:13 +0300 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2021-06-08 19:29:16 -0400 |
commit | c19d1fbb5900630447b0e955a61e9f82dd1ff502 (patch) | |
tree | bbd49bc928342354cc265ef65af05a95a3869efb /src/pru | |
parent | b513d085a51251b0715461a473ada59254271350 (diff) | |
download | kutter-c19d1fbb5900630447b0e955a61e9f82dd1ff502.tar.gz kutter-c19d1fbb5900630447b0e955a61e9f82dd1ff502.tar.xz kutter-c19d1fbb5900630447b0e955a61e9f82dd1ff502.zip |
Makefile: Include debug symbols in the .elf
Signed-off-by: Sergey Alirzaev <zl29ah@gmail.com>
Diffstat (limited to 'src/pru')
-rw-r--r-- | src/pru/pru.lds | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/pru/pru.lds b/src/pru/pru.lds index db36803c..48f71d6d 100644 --- a/src/pru/pru.lds +++ b/src/pru/pru.lds @@ -3,7 +3,9 @@ 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* ) } } |