This is the mail archive of the binutils-cvs@sourceware.org mailing list for the binutils project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[binutils-gdb] Add .debug_gdb_scripts section to PE linker scripts.


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=786e3eba7915df35df1d98a300e06f757336c75b

commit 786e3eba7915df35df1d98a300e06f757336c75b
Author: Nick Clifton <nickc@redhat.com>
Date:   Mon May 15 13:12:49 2017 +0100

    Add .debug_gdb_scripts section to PE linker scripts.
    
    	PR ld/21459
    	* scripttempl/pe.sc: Add .debug_gdb_scripts section.
    	* scripttempl/pep.sc: Likewise.

Diff:
---
 ld/ChangeLog          |  6 ++++++
 ld/scripttempl/pe.sc  | 10 ++++++++++
 ld/scripttempl/pep.sc | 10 ++++++++++
 3 files changed, 26 insertions(+)

diff --git a/ld/ChangeLog b/ld/ChangeLog
index 7e22adf..8e31ca8 100644
--- a/ld/ChangeLog
+++ b/ld/ChangeLog
@@ -1,3 +1,9 @@
+2017-05-15  Nick Clifton  <nickc@redhat.com>
+
+	PR ld/21459
+	* scripttempl/pe.sc: Add .debug_gdb_scripts section.
+	* scripttempl/pep.sc: Likewise.
+
 2017-05-12  H.J. Lu  <hongjiu.lu@intel.com>
 
 	* testsuite/ld-i386/i386.exp: Run property-x86-3.
diff --git a/ld/scripttempl/pe.sc b/ld/scripttempl/pe.sc
index 9981848..9f7b2b2 100644
--- a/ld/scripttempl/pe.sc
+++ b/ld/scripttempl/pe.sc
@@ -402,5 +402,15 @@ SECTIONS
   {
     *(.zdebug_types${RELOCATING+ .gnu.linkonce.wt.*})
   }
+
+  /* For Go and Rust.  */
+  .debug_gdb_scripts ${RELOCATING+BLOCK(__section_alignment__)} ${RELOCATING+(NOLOAD)} :
+  {
+    *(.debug_gdb_scripts)
+  }
+  .zdebug_gdb_scripts ${RELOCATING+BLOCK(__section_alignment__)} ${RELOCATING+(NOLOAD)} :
+  {
+    *(.zdebug_gdb_scripts)
+  }
 }
 EOF
diff --git a/ld/scripttempl/pep.sc b/ld/scripttempl/pep.sc
index 16dc57f..57eb75c 100644
--- a/ld/scripttempl/pep.sc
+++ b/ld/scripttempl/pep.sc
@@ -415,5 +415,15 @@ SECTIONS
   {
     *(.zdebug_types${RELOCATING+ .zdebug.gnu.linkonce.wt.*})
   }
+
+  /* For Go and Rust.  */
+  .debug_gdb_scripts ${RELOCATING+BLOCK(__section_alignment__)} ${RELOCATING+(NOLOAD)} :
+  {
+    *(.debug_gdb_scripts)
+  }
+  .zdebug_gdb_scripts ${RELOCATING+BLOCK(__section_alignment__)} ${RELOCATING+(NOLOAD)} :
+  {
+    *(.zdebug_gdb_scripts)
+  }
 }
 EOF


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]