summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--librocksdb-sys/Cargo.toml2
-rw-r--r--librocksdb-sys/build.rs5
-rw-r--r--librocksdb-sys/build_version.cc8
m---------librocksdb-sys/rocksdb0
4 files changed, 5 insertions, 10 deletions
diff --git a/librocksdb-sys/Cargo.toml b/librocksdb-sys/Cargo.toml
index 84766d4..57f6eb2 100644
--- a/librocksdb-sys/Cargo.toml
+++ b/librocksdb-sys/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "librocksdb-sys"
-version = "0.11.0+8.1.1"
+version = "0.11.0+8.3.2"
edition = "2018"
rust-version = "1.60"
authors = ["Karl Hobley <karlhobley10@gmail.com>", "Arkadiy Paronyan <arkadiy@ethcore.io>"]
diff --git a/librocksdb-sys/build.rs b/librocksdb-sys/build.rs
index dccaf29..dae9682 100644
--- a/librocksdb-sys/build.rs
+++ b/librocksdb-sys/build.rs
@@ -118,24 +118,19 @@ fn build_rocksdb() {
}
if target_features.contains(&"sse4.2") {
config.flag_if_supported("-msse4.2");
- config.define("HAVE_SSE42", Some("1"));
}
// Pass along additional target features as defined in
// build_tools/build_detect_platform.
if target_features.contains(&"avx2") {
config.flag_if_supported("-mavx2");
- config.define("HAVE_AVX2", Some("1"));
}
if target_features.contains(&"bmi1") {
config.flag_if_supported("-mbmi");
- config.define("HAVE_BMI", Some("1"));
}
if target_features.contains(&"lzcnt") {
config.flag_if_supported("-mlzcnt");
- config.define("HAVE_LZCNT", Some("1"));
}
if !target.contains("android") && target_features.contains(&"pclmulqdq") {
- config.define("HAVE_PCLMUL", Some("1"));
config.flag_if_supported("-mpclmul");
}
}
diff --git a/librocksdb-sys/build_version.cc b/librocksdb-sys/build_version.cc
index 527e114..9277cf4 100644
--- a/librocksdb-sys/build_version.cc
+++ b/librocksdb-sys/build_version.cc
@@ -8,17 +8,17 @@
// The build script may replace these values with real values based
// on whether or not GIT is available and the platform settings
-static const std::string rocksdb_build_git_sha = "6a436150417120a3f9732d65a2a5c2b8d19b60fc";
-static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v8.1.1";
+static const std::string rocksdb_build_git_sha = "3f7c92b9753b697ce6a5ea737086d2751f17956c";
+static const std::string rocksdb_build_git_tag = "rocksdb_build_git_tag:v8.3.2";
#define HAS_GIT_CHANGES 0
#if HAS_GIT_CHANGES == 0
// If HAS_GIT_CHANGES is 0, the GIT date is used.
// Use the time the branch/tag was last modified
-static const std::string rocksdb_build_date = "rocksdb_build_date:2023-04-06 16:38:52";
+static const std::string rocksdb_build_date = "rocksdb_build_date:2023-06-15 05:32:14";
#else
// If HAS_GIT_CHANGES is > 0, the branch/tag has modifications.
// Use the time the build was created.
-static const std::string rocksdb_build_date = "rocksdb_build_date:2023-04-06 16:38:52";
+static const std::string rocksdb_build_date = "rocksdb_build_date:2023-06-15 05:32:14";
#endif
std::unordered_map<std::string, ROCKSDB_NAMESPACE::RegistrarFunc> ROCKSDB_NAMESPACE::ObjectRegistry::builtins_ = {};
diff --git a/librocksdb-sys/rocksdb b/librocksdb-sys/rocksdb
-Subproject 6a436150417120a3f9732d65a2a5c2b8d19b60f
+Subproject 3f7c92b9753b697ce6a5ea737086d2751f17956