We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31fbd32 commit 2850f47Copy full SHA for 2850f47
1 file changed
librocksdb_sys/build.rs
@@ -171,7 +171,6 @@ fn build_rocksdb() -> Build {
171
.very_verbose(true)
172
.build();
173
let build_dir = format!("{}/build", dst.display());
174
- link_optional_uring(&build_dir);
175
let mut build = Build::new();
176
if target_os == "windows" {
177
let profile = match &*env::var("PROFILE").unwrap_or_else(|_| "debug".to_owned()) {
@@ -212,6 +211,7 @@ fn build_rocksdb() -> Build {
212
211
println!("cargo:rustc-link-lib=static=lz4");
213
println!("cargo:rustc-link-lib=static=zstd");
214
println!("cargo:rustc-link-lib=static=snappy");
+ link_optional_uring(&build_dir);
215
216
println!(
217
"cargo:rerun-if-changed={}",
0 commit comments