Skip to content

Commit a60f985

Browse files
committed
lint
1 parent 114d0bd commit a60f985

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tools/jit/_targets.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,8 @@ def get_target(host: str) -> _COFF | _ELF | _MachO:
521521
args = ["-fms-runtime-lib=dll"]
522522
target = _COFF(host, alignment=8, args=args)
523523
elif re.fullmatch(r"aarch64-.*-linux-gnu", host):
524-
args = ["-fpic",
524+
args = [
525+
"-fpic",
525526
# On aarch64 Linux, intrinsics were being emitted and this flag
526527
# was required to disable them.
527528
"-mno-outline-atomics",

0 commit comments

Comments
 (0)