diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2024-05-13 22:17:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-05-13 22:17:34 (GMT) |
commit | 29a2f9cc286f6cef8a359fc7022fe9d480a2eb79 (patch) | |
tree | 621954dcffd4452c0fdfc055ec96e4cf59571240 /Tools | |
parent | c7628b0ea0aaee8b6b16a8e69edea86a668ef94e (diff) | |
download | cpython-29a2f9cc286f6cef8a359fc7022fe9d480a2eb79.zip cpython-29a2f9cc286f6cef8a359fc7022fe9d480a2eb79.tar.gz cpython-29a2f9cc286f6cef8a359fc7022fe9d480a2eb79.tar.bz2 |
[3.13] GH-118836: Fix JIT build error when SHT_NOTE section is present (GH-119020)
(cherry picked from commit e04cd964eb4eee1b0ae5b2c34727abce6c0fb7f0)
Co-authored-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'Tools')
-rw-r--r-- | Tools/jit/_targets.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tools/jit/_targets.py b/Tools/jit/_targets.py index 023ef49..b020f49 100644 --- a/Tools/jit/_targets.py +++ b/Tools/jit/_targets.py @@ -349,6 +349,7 @@ class _ELF( assert section_type in { "SHT_GROUP", "SHT_LLVM_ADDRSIG", + "SHT_NOTE", "SHT_NULL", "SHT_STRTAB", "SHT_SYMTAB", |