We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f52a4f commit 7a7d84dCopy full SHA for 7a7d84d
src/lib.rs
@@ -545,6 +545,13 @@ impl Build {
545
// executable to run.
546
let windres = format!("{}-windres", &path[..path.len() - 4]);
547
configure.env("WINDRES", &windres);
548
+
549
+ // Cross-compiling to MinGW apparently has different enough
550
+ // headers that QUIC no longer compiles. Defer fixing this to
551
+ // some future day...
552
+ if !cfg!(windows) {
553
+ configure.arg("no-quic");
554
+ }
555
}
556
557
if target.contains("emscripten") {
0 commit comments