We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e84902d + 811c1db commit 3bc6916Copy full SHA for 3bc6916
compiler/rustc_codegen_llvm/src/context.rs
@@ -274,8 +274,12 @@ pub(crate) unsafe fn create_module<'ll>(
274
}
275
276
277
- // Control Flow Guard is currently only supported by the MSVC linker on Windows.
278
- if sess.target.is_like_msvc {
+ // Control Flow Guard is currently only supported by MSVC and LLVM on Windows.
+ if sess.target.is_like_msvc
279
+ || (sess.target.options.os == "windows"
280
+ && sess.target.options.env == "gnu"
281
+ && sess.target.options.abi == "llvm")
282
+ {
283
match sess.opts.cg.control_flow_guard {
284
CFGuard::Disabled => {}
285
CFGuard::NoChecks => {
0 commit comments