We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c2bf78 commit 530b1a5Copy full SHA for 530b1a5
zng/cc.rs
@@ -14,6 +14,7 @@ impl Build {
14
// cc currently has a bug where they create a named temp file in a directory
15
// without ensuring the directory exists first, so apply this workaround
16
// until it can be fixed upstream
17
+ // Can be removed once https://github.com/rust-lang/cc-rs/pull/1072 is merged and released.
18
let mut pb = PathBuf::from(env::var_os("OUT_DIR").expect("this should always be set"));
19
pb.push("lib");
20
if let Err(err) = std::fs::create_dir_all(&pb) {
0 commit comments