Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions scripts/build/gen_relocate_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@ def print_linker_sections(list_sections: 'list[OutputSection]'):
out = ''
for section in sorted(list_sections):
template = PRINT_TEMPLATE if section.keep else PRINT_TEMPLATE_NOKEEP
out += template.format(
obj_file_name=section.obj_file_name, section_name=section.section_name
)
# Replace quoted section name with wildcard.
section_name = re.sub(r'\.\"[^\"]+\"\.', '.*.', section.section_name)
out += template.format(obj_file_name=section.obj_file_name, section_name=section_name)
Comment on lines +335 to +337
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would like to have this fixed before entering the script.

I wonder how / when this issue first started to appear.

return out


Expand Down
Loading