mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 07:22:42 +00:00
Revert "Auto merge of #106511 - MaskRay:gotpcrelx, r=nikic"
This reverts commit4410868798
, reversing changes made to249595b752
. This causes linker failures with the binutils version used by cross (#115239), as well as miscompilations when using the mold linker.
This commit is contained in:
parent
f320f42c59
commit
1b7cf24d80
@ -821,7 +821,7 @@ fn test_unstable_options_tracking_hash() {
|
||||
tracked!(profile_emit, Some(PathBuf::from("abc")));
|
||||
tracked!(profile_sample_use, Some(PathBuf::from("abc")));
|
||||
tracked!(profiler_runtime, "abc".to_string());
|
||||
tracked!(relax_elf_relocations, Some(false));
|
||||
tracked!(relax_elf_relocations, Some(true));
|
||||
tracked!(relro_level, Some(RelroLevel::Full));
|
||||
tracked!(remap_cwd_prefix, Some(PathBuf::from("abc")));
|
||||
tracked!(report_delayed_bugs, true);
|
||||
|
@ -2216,7 +2216,7 @@ impl Default for TargetOptions {
|
||||
mcount: "mcount".into(),
|
||||
llvm_mcount_intrinsic: None,
|
||||
llvm_abiname: "".into(),
|
||||
relax_elf_relocations: true,
|
||||
relax_elf_relocations: false,
|
||||
llvm_args: cvs![],
|
||||
use_ctors_section: false,
|
||||
eh_frame_header: true,
|
||||
|
@ -69,6 +69,7 @@ pub fn target() -> Target {
|
||||
position_independent_executables: true,
|
||||
pre_link_args,
|
||||
override_export_symbols: Some(EXPORT_SYMBOLS.iter().cloned().map(Cow::from).collect()),
|
||||
relax_elf_relocations: true,
|
||||
..Default::default()
|
||||
};
|
||||
Target {
|
||||
|
Loading…
Reference in New Issue
Block a user