Skip to content

Commit

Permalink
use arm abi blacklist for aarch64 fuchsia
Browse files Browse the repository at this point in the history
  • Loading branch information
TimNN committed Nov 6, 2016
1 parent 5fe733a commit 9bae003
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/librustc_back/target/aarch64_unknown_fuchsia.rs
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use target::{Target, TargetResult};
use target::{Target, TargetOptions, TargetResult};

pub fn target() -> TargetResult {
let mut base = super::fuchsia_base::opts();
Expand All @@ -23,6 +23,9 @@ pub fn target() -> TargetResult {
target_os: "fuchsia".to_string(),
target_env: "".to_string(),
target_vendor: "unknown".to_string(),
options: base,
options: TargetOptions {
abi_blacklist: super::arm_base::abi_blacklist(),
.. base
},
})
}

0 comments on commit 9bae003

Please sign in to comment.