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 114d0bd commit a60f985Copy full SHA for a60f985
Tools/jit/_targets.py
@@ -521,7 +521,8 @@ def get_target(host: str) -> _COFF | _ELF | _MachO:
521
args = ["-fms-runtime-lib=dll"]
522
target = _COFF(host, alignment=8, args=args)
523
elif re.fullmatch(r"aarch64-.*-linux-gnu", host):
524
- args = ["-fpic",
+ args = [
525
+ "-fpic",
526
# On aarch64 Linux, intrinsics were being emitted and this flag
527
# was required to disable them.
528
"-mno-outline-atomics",
0 commit comments