use arm abi blacklist for aarch64 fuchsia

This commit is contained in:
Tim Neumann 2016-11-06 20:41:42 +01:00
parent 5fe733a159
commit 9bae00332c

View File

@ -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();
@ -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
},
})
}