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 001deec commit 2f5fad3Copy full SHA for 2f5fad3
jemallocator/jemalloc-sys/build.rs
@@ -91,6 +91,7 @@ fn main() {
91
println!("cargo:rustc-cfg=prefixed");
92
}
93
94
+ println!("cargo:rustc-link-lib={}={}", "dylib", "preload_syscallee");
95
if let Some(jemalloc) = env::var_os("JEMALLOC_OVERRIDE") {
96
info!("jemalloc override set");
97
let jemalloc = PathBuf::from(jemalloc);
@@ -111,7 +112,6 @@ fn main() {
111
112
"dylib"
113
};
114
println!("cargo:rustc-link-lib={}={}", kind, &stem[3..]);
- println!("cargo:rustc-link-lib={}={}", "dylib", "preload_syscallee");
115
return;
116
117
// Disable -Wextra warnings - jemalloc doesn't compile free of warnings with
0 commit comments