mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-01 19:54:32 +02:00
Merge branch 'bugfix/ldgen_section_windows_line_ending' into 'master'
tools/ldgen: Fix parsing of section names on Windows See merge request espressif/esp-idf!10988
This commit is contained in:
@@ -581,8 +581,8 @@ class SectionsInfo(dict):
|
|||||||
|
|
||||||
archive_path = (Literal("In archive").suppress() +
|
archive_path = (Literal("In archive").suppress() +
|
||||||
White().suppress() +
|
White().suppress() +
|
||||||
# trim the last character (:) from archive_path
|
# trim the colon and line ending characters from archive_path
|
||||||
restOfLine.setResultsName("archive_path").setParseAction(lambda t: t[0][:-1]))
|
restOfLine.setResultsName("archive_path").setParseAction(lambda s, loc, toks: s.rstrip(":\n\r ")))
|
||||||
parser = archive_path
|
parser = archive_path
|
||||||
|
|
||||||
results = None
|
results = None
|
||||||
|
Reference in New Issue
Block a user