e0e1ae6f6a
- Fix assignment of pages to segments. (PR 22758) - Inject RPM_LD_FLAGS into the build. (#1541027) - Fix slowdown in readelf when examining files with lots of debug information. (PR 22802) - Remove support for PowerPC speculation barrier insertion. - Rebase on 2.30 - Retire binutils-2.22.52.0.1-relro-on-by-default.patch - Retire binutils-2.28-dynamic-section-warning.patch - Retire binutils-2.29-skip-rp14918-test-for-arm.patch - Retire binutils-2.29.1-gold-start-stop.patch - Retire binutils-2.29.1-readelf-use-dynamic.patch - Retire binutils-aarch64-pie.patch - Retire binutils-coverity.patch - Retire binutils-ppc64-stub-creation.patch - Retire binutils-strip-delete-relocs.patch - Retire binutils-support-v3-build-notes.patch - Retire binutils-z-undefs.patch
14 lines
537 B
Diff
14 lines
537 B
Diff
--- binutils.orig/binutils/dwarf.c 2018-02-08 10:49:07.154191536 +0000
|
|
+++ binutils-2.30/binutils/dwarf.c 2018-02-08 12:53:32.649380368 +0000
|
|
@@ -9851,6 +9851,10 @@ load_dwo_file (const char * main_filenam
|
|
void *
|
|
load_separate_debug_file (void * file, const char * filename)
|
|
{
|
|
+ /* Skip this operation if we are not interested in debug links. */
|
|
+ if (! do_follow_links && ! do_debug_links)
|
|
+ return NULL;
|
|
+
|
|
/* See if there is a dwo link. */
|
|
if (load_debug_section (str, file)
|
|
&& load_debug_section (abbrev, file)
|