aboutsummaryrefslogtreecommitdiff
path: root/linker.ld
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-02-23 11:42:19 -0700
committerChristian Cunningham <cc@localhost>2022-02-23 11:42:19 -0700
commit667ee7c7ba26b4c32133dad24031ba30b5db70b0 (patch)
tree2a8f994122f356770038ca753f1420129c62a6a5 /linker.ld
parentb5021c723a5ee267982c4779bb1b1d644e4d2d5c (diff)
Makefile Modifications
Diffstat (limited to 'linker.ld')
-rw-r--r--linker.ld5
1 files changed, 5 insertions, 0 deletions
diff --git a/linker.ld b/linker.ld
index c97501c..3d84d1c 100644
--- a/linker.ld
+++ b/linker.ld
@@ -43,4 +43,9 @@ SECTIONS
. = ALIGN(4096); /* align to page size */
__bss_end = .;
__end = .;
+ /DISCARD/ : {
+ *(.ARM.attributes*)
+ *(.comment*)
+ *(.debug*)
+ }
}