Skip to content

Commit 8e2b57d

Browse files
authored
Auto merge of #37619 - TimNN:aarch64-fuchsia-abi-blacklist, r=alexcrichton
use arm abi blacklist for aarch64 fuchsia r? @alexcrichton
2 parents 4742008 + 9bae003 commit 8e2b57d

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/librustc_back/target/aarch64_unknown_fuchsia.rs

+5-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
// option. This file may not be copied, modified, or distributed
99
// except according to those terms.
1010

11-
use target::{Target, TargetResult};
11+
use target::{Target, TargetOptions, TargetResult};
1212

1313
pub fn target() -> TargetResult {
1414
let mut base = super::fuchsia_base::opts();
@@ -23,6 +23,9 @@ pub fn target() -> TargetResult {
2323
target_os: "fuchsia".to_string(),
2424
target_env: "".to_string(),
2525
target_vendor: "unknown".to_string(),
26-
options: base,
26+
options: TargetOptions {
27+
abi_blacklist: super::arm_base::abi_blacklist(),
28+
.. base
29+
},
2730
})
2831
}

0 commit comments

Comments
 (0)