Skip to content

Commit 3bc6916

Browse files
committed
Auto merge of #132965 - mati865:cfguard-gnullvm, r=wesleywiser
allow CFGuard on windows-gnullvm No unit tests because of #132278
2 parents e84902d + 811c1db commit 3bc6916

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

compiler/rustc_codegen_llvm/src/context.rs

+6-2
Original file line numberDiff line numberDiff line change
@@ -274,8 +274,12 @@ pub(crate) unsafe fn create_module<'ll>(
274274
}
275275
}
276276

277-
// Control Flow Guard is currently only supported by the MSVC linker on Windows.
278-
if sess.target.is_like_msvc {
277+
// Control Flow Guard is currently only supported by MSVC and LLVM on Windows.
278+
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+
{
279283
match sess.opts.cg.control_flow_guard {
280284
CFGuard::Disabled => {}
281285
CFGuard::NoChecks => {

0 commit comments

Comments
 (0)