Skip to content

Commit

Permalink
Rollup merge of rust-lang#66711 - mattico:aarch-msvc-fp, r=nagisa
Browse files Browse the repository at this point in the history
Add hardware floating point features to aarch64-pc-windows-msvc

Fixes rust-lang#66701
  • Loading branch information
tmandry authored Nov 26, 2019
2 parents a0e756b + 01d01ce commit 9e2802b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/librustc_target/spec/aarch64_pc_windows_msvc.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ pub fn target() -> TargetResult {
let mut base = super::windows_msvc_base::opts();
base.max_atomic_width = Some(64);
base.has_elf_tls = true;
base.features = "+neon,+fp-armv8".to_string();

// FIXME: this shouldn't be panic=abort, it should be panic=unwind
base.panic_strategy = PanicStrategy::Abort;
Expand Down

0 comments on commit 9e2802b

Please sign in to comment.