Auto merge of #37619 - TimNN:aarch64-fuchsia-abi-blacklist, r=alexcrichton
use arm abi blacklist for aarch64 fuchsia r? @alexcrichton
This commit is contained in:
commit
8e2b57d3e4
1 changed files with 5 additions and 2 deletions
|
@ -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
|
||||
},
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue