We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 90646f1 commit 084ad96Copy full SHA for 084ad96
libmimalloc-sys/build.rs
@@ -2,7 +2,7 @@ use cmake::Config;
2
3
#[cfg(feature = "no_secure")]
4
fn main() {
5
- let dst = Config::new("c_src/mimalloc")
+ let mut dst = Config::new("c_src/mimalloc")
6
.build();
7
8
dst.push("build");
@@ -27,6 +27,6 @@ fn main() {
27
if cfg!(debug_assertions) {
28
println!("cargo:rustc-link-lib=static=mimalloc-debug");
29
} else {
30
- println!("cargo:rustc-link-lib=static=mimalloc");
+ println!("cargo:rustc-link-lib=static=mimalloc-secure");
31
}
32
0 commit comments