Skip to content

Commit 26dcb74

Browse files
Try both flags
1 parent bbe6d9c commit 26dcb74

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Tools/jit/_stencils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ class HoleValue(enum.Enum):
9090
"R_AARCH64_MOVW_UABS_G1_NC": "patch_aarch64_16b",
9191
"R_AARCH64_MOVW_UABS_G2_NC": "patch_aarch64_16c",
9292
"R_AARCH64_MOVW_UABS_G3": "patch_aarch64_16d",
93-
"R_AARCH64_PREL32": "patch_32r",
9493
# x86_64-unknown-linux-gnu:
9594
"R_X86_64_64": "patch_64",
9695
"R_X86_64_GOTPCRELX": "patch_x86_64_32rx",

Tools/jit/_targets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,6 +166,7 @@ async def _compile(
166166
# This debug info isn't necessary, and bloats out the JIT'ed code.
167167
# We *may* be able to re-enable this, process it, and JIT it for a
168168
# nicer debugging experience... but that needs a lot more research:
169+
"-fno-asynchronous-unwind-tables",
169170
"-fno-unwind-tables",
170171
# Don't call built-in functions that we can't find or patch:
171172
"-fno-builtin",
@@ -435,7 +436,6 @@ def _handle_section(
435436
"SHT_NULL",
436437
"SHT_STRTAB",
437438
"SHT_SYMTAB",
438-
"SHT_X86_64_UNWIND",
439439
}, section_type
440440

441441
def _handle_relocation(

0 commit comments

Comments
 (0)