Skip to content

Commit 7c22761

Browse files
Fix condition typo
1 parent de3f896 commit 7c22761

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Tools/jit/_targets.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ def get_target(host: str) -> _COFF | _ELF | _MachO:
532532
# was required to disable them.
533533
"-mno-outline-atomics",
534534
]
535-
condition = "aarch64__) && defined(__linux__)"
535+
condition = "defined(__aarch64__) && defined(__linux__)"
536536
target = _ELF(host, condition, alignment=8, args=args)
537537
elif re.fullmatch(r"i686-pc-windows-msvc", host):
538538
args = [

0 commit comments

Comments
 (0)