We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 69ed6b9 commit baff67dCopy full SHA for baff67d
src/librustc_llvm/build.rs
@@ -271,5 +271,6 @@ fn main() {
271
if target.contains("windows-gnu") {
272
println!("cargo:rustc-link-lib=static-nobundle=gcc_s");
273
println!("cargo:rustc-link-lib=static-nobundle=pthread");
274
+ println!("cargo:rustc-link-lib=dylib=uuid");
275
}
276
src/librustc_llvm/lib.rs
@@ -8,6 +8,8 @@
8
// option. This file may not be copied, modified, or distributed
9
// except according to those terms.
10
11
+#![feature(static_nobundle)]
12
+
13
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
14
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
15
html_root_url = "https://doc.rust-lang.org/nightly/")]
0 commit comments