Skip to content

Commit 11d54dc

Browse files
committed
Fix issue where PIC was added to the wrong target.
Should be for x86_64_unknown_none, but aarch64_unknown_none was inadvertently updated instead.
1 parent 3a18792 commit 11d54dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

compiler/rustc_target/src/spec/aarch64_unknown_none.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ pub fn target() -> Target {
1414
linker: Some("rust-lld".to_owned()),
1515
features: "+strict-align,+neon,+fp-armv8".to_string(),
1616
executables: true,
17-
relocation_model: RelocModel::Pic,
17+
relocation_model: RelocModel::Static,
1818
disable_redzone: true,
1919
max_atomic_width: Some(128),
2020
panic_strategy: PanicStrategy::Abort,

compiler/rustc_target/src/spec/x86_64_unknown_none.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ pub fn target() -> Target {
1818
position_independent_executables: true,
1919
static_position_independent_executables: true,
2020
relro_level: RelroLevel::Full,
21-
relocation_model: RelocModel::Static,
21+
relocation_model: RelocModel::Pic,
2222
linker_flavor: LinkerFlavor::Lld(LldFlavor::Ld),
2323
linker: Some("rust-lld".to_owned()),
2424
features:

0 commit comments

Comments
 (0)