Skip to content

Commit 9e2802b

Browse files
authored
Rollup merge of #66711 - mattico:aarch-msvc-fp, r=nagisa
Add hardware floating point features to aarch64-pc-windows-msvc Fixes #66701
2 parents a0e756b + 01d01ce commit 9e2802b

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/librustc_target/spec/aarch64_pc_windows_msvc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ pub fn target() -> TargetResult {
44
let mut base = super::windows_msvc_base::opts();
55
base.max_atomic_width = Some(64);
66
base.has_elf_tls = true;
7+
base.features = "+neon,+fp-armv8".to_string();
78

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

0 commit comments

Comments
 (0)