We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 414482f commit a1ea0ceCopy full SHA for a1ea0ce
compiler/rustc_target/src/spec/targets/aarch64_pc_windows_msvc.rs
@@ -14,7 +14,7 @@ pub(crate) fn target() -> Target {
14
// MSVC emits a warning about code that may trip "Cortex-A53 MPCore processor bug #843419" (see
15
// https://developer.arm.com/documentation/epm048406/latest) which is sometimes emitted by LLVM.
16
// Since Arm64 Windows 10+ isn't supported on that processor, it's safe to disable the warning.
17
- base.add_pre_link_args(LinkerFlavor::Msvc(Lld::No), &["/arm64hazardfree"]);
+ base.add_pre_link_args(LinkerFlavor::Msvc(Lld::No), &["-arm64hazardfree"]);
18
19
Target {
20
llvm_target: "aarch64-pc-windows-msvc".into(),
0 commit comments