commit | 383d74b86d82cb4c2dca906bf2d63bef09ec48f5 | [log] [tgz] |
---|---|---|
author | Anton Blanchard <anton@linux.ibm.com> | Thu Dec 10 21:34:09 2020 +1100 |
committer | Anton Blanchard <anton@linux.ibm.com> | Mon Feb 01 05:00:12 2021 -0600 |
tree | c871ef8d1de1ae0e442e44185a799ed8a69e41e7 | |
parent | 0e25d58c262e292be109078fcc60a0d262177424 [diff] |
Discard .note.gnu.build-id sections The .note.gnu.build-id section was causing issues on my toolchain, it would end up getting inserted at the start of the dumps.
diff --git a/verilog/dv/caravel/sections.lds b/verilog/dv/caravel/sections.lds index 8da9aae..22ff000 100644 --- a/verilog/dv/caravel/sections.lds +++ b/verilog/dv/caravel/sections.lds
@@ -55,4 +55,9 @@ . = ALIGN(4); _heap_start = .; } >RAM + + /DISCARD/ : + { + *(.note.gnu.build-id) + } }