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 50dd66b commit d5071b3Copy full SHA for d5071b3
Tools/jit/_targets.py
@@ -537,14 +537,7 @@ def get_target(host: str) -> _COFF | _ELF | _MachO:
537
args = ["-fms-runtime-lib=dll"]
538
target = _COFF(host, args=args)
539
elif re.fullmatch(r"x86_64-.*-linux-gnu", host):
540
- args = [
541
- # Jump tables generate R_X86_64_32S relocations, which assume a
542
- # signed 32-bit address space:
543
- "-fno-jump-tables",
544
- "-fno-pic",
545
- "-mcmodel=medium",
546
- "-mlarge-data-threshold=0",
547
- ]
+ args = ["-fno-pic", "-mcmodel=medium", "-mlarge-data-threshold=0"]
548
target = _ELF(host, args=args)
549
else:
550
raise ValueError(host)
0 commit comments