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 5fe733a commit 9bae003Copy full SHA for 9bae003
src/librustc_back/target/aarch64_unknown_fuchsia.rs
@@ -8,7 +8,7 @@
8
// option. This file may not be copied, modified, or distributed
9
// except according to those terms.
10
11
-use target::{Target, TargetResult};
+use target::{Target, TargetOptions, TargetResult};
12
13
pub fn target() -> TargetResult {
14
let mut base = super::fuchsia_base::opts();
@@ -23,6 +23,9 @@ pub fn target() -> TargetResult {
23
target_os: "fuchsia".to_string(),
24
target_env: "".to_string(),
25
target_vendor: "unknown".to_string(),
26
- options: base,
+ options: TargetOptions {
27
+ abi_blacklist: super::arm_base::abi_blacklist(),
28
+ .. base
29
+ },
30
})
31
}
0 commit comments