diff options
author | Cary Coutant <ccoutant@gmail.com> | 2016-12-19 16:37:48 -0800 |
---|---|---|
committer | Cary Coutant <ccoutant@gmail.com> | 2016-12-19 17:22:10 -0800 |
commit | 412ffd830b94a860e81e8515140ba5ebc5aa82be (patch) | |
tree | 0bb7f768ff3401fa8e532e1fb70c7277629e3ab8 /gold/layout.h | |
parent | ec5882fbd19a80299e7ae738fca016ef27830ad4 (diff) | |
download | gdb-412ffd830b94a860e81e8515140ba5ebc5aa82be.zip gdb-412ffd830b94a860e81e8515140ba5ebc5aa82be.tar.gz gdb-412ffd830b94a860e81e8515140ba5ebc5aa82be.tar.bz2 |
Fix problem where linker does not place .note sections according to script.
gold/
PR gold/14676
PR gold/20983
* layout.h (Layout::choose_output_section): Add match_input_spec
parameter. Adjust all callers.
* layout.cc (Layout::choose_output_section): Likewise. Pass
match_input_spec to Script_sections::output_section_name().
(Layout::create_note): Pass true for match_input_spec.
* script-sections.h (Script_sections::output_section_name): Add
match_input_spec parameter.
* script-sections.cc (Sections_element::output_section_name): Likewise.
(Output_section_definition::output_section_name): Likewise.
(Script_sections::output_section_name): Likewise.
Diffstat (limited to 'gold/layout.h')
-rw-r--r-- | gold/layout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gold/layout.h b/gold/layout.h index b399854..10be3d4 100644 --- a/gold/layout.h +++ b/gold/layout.h @@ -1149,7 +1149,7 @@ class Layout choose_output_section(const Relobj* relobj, const char* name, elfcpp::Elf_Word type, elfcpp::Elf_Xword flags, bool is_input_section, Output_section_order order, - bool is_relro, bool is_reloc); + bool is_relro, bool is_reloc, bool match_input_spec); // Create a new Output_section. Output_section* |