[PATCH 2/6] gold: Recognize .pdr debug sections.
Vladimir Radosavljevic
Vladimir.Radosavljevic@imgtec.com
Tue Nov 3 16:18:00 GMT 2015
More information about the Binutils mailing list
Tue Nov 3 16:18:00 GMT 2015
- Previous message (by thread): [PATCH 1/6] gold: Add 2 overloaded functions to copy_reloc.
- Next message (by thread): [PATCH 2/6] gold: Recognize .pdr debug sections.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Regards,
Vladimir
Changelog -
* layout.h (Layout::is_debug_info_section): Recognize .pdr debug sections.
Patch -
layout.h | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gold/layout.h b/gold/layout.h
index 7bdaaca..ed9d930 100644
--- a/gold/layout.h
+++ b/gold/layout.h
@@ -764,7 +764,8 @@ class Layout
|| strncmp(name, ".gnu.linkonce.wi.",
sizeof(".gnu.linkonce.wi.") - 1) == 0
|| strncmp(name, ".line", sizeof(".line") - 1) == 0
- || strncmp(name, ".stab", sizeof(".stab") - 1) == 0);
+ || strncmp(name, ".stab", sizeof(".stab") - 1) == 0
+ || strncmp(name, ".pdr", sizeof(".pdr") - 1) == 0);
}
// Return true if RELOBJ is an input file whose base name matches
- Previous message (by thread): [PATCH 1/6] gold: Add 2 overloaded functions to copy_reloc.
- Next message (by thread): [PATCH 2/6] gold: Recognize .pdr debug sections.
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Binutils mailing list