We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fa9519f commit 6c4fab1Copy full SHA for 6c4fab1
Tools/jit/_targets.py
@@ -267,6 +267,10 @@ class _COFF(
267
def _handle_section(
268
self, section: _schema.COFFSection, group: _stencils.StencilGroup
269
) -> None:
270
+ name = section["Name"]["Value"]
271
+ if name == ".debug$S":
272
+ # skip debug sections
273
+ return
274
flags = {flag["Name"] for flag in section["Characteristics"]["Flags"]}
275
if "SectionData" in section:
276
section_data_bytes = section["SectionData"]["Bytes"]
0 commit comments