Module Name:    src
Committed By:   christos
Date:           Fri May 24 15:59:57 UTC 2013

Modified Files:
        src/sys/arch/x68k/stand/boot: boot.ldscript

Log Message:
discard debug sections that are not representable in the a.out object format.


To generate a diff of this commit:
cvs rdiff -u -r1.3 -r1.4 src/sys/arch/x68k/stand/boot/boot.ldscript

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/x68k/stand/boot/boot.ldscript
diff -u src/sys/arch/x68k/stand/boot/boot.ldscript:1.3 src/sys/arch/x68k/stand/boot/boot.ldscript:1.4
--- src/sys/arch/x68k/stand/boot/boot.ldscript:1.3	Tue Mar 20 08:37:34 2012
+++ src/sys/arch/x68k/stand/boot/boot.ldscript	Fri May 24 11:59:57 2013
@@ -47,5 +47,20 @@ SECTIONS
    end = ALIGN(4) ;
    _end = ALIGN(4) ;
   }
-  /DISCARD/ : { *(.ident) *(.stab) *(.stabstr) *(.comment) }
+  /DISCARD/ : {
+      *(.ident)
+      *(.stab)
+      *(.stabstr)
+      *(.comment)
+      *(.debug_abbrev)
+      *(.debug_info)
+      *(.debug_line)
+      *(.debug_loc)
+      *(.debug_pubnames)
+      *(.debug_pubtypes)
+      *(.debug_aranges)
+      *(.debug_ranges)
+      *(.debug_str)
+      *(.debug_frame)
+  }
 }

Reply via email to