Add hardware floating point features to aarch64-pc-windows-msvc

This commit is contained in:
Matt Ickstadt 2019-11-24 13:39:03 -06:00
parent 5a1d028d4c
commit 01d01ce3ca

View file

@ -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;