Support UTF-8 file paths on Windows (#551)

master
Rajiv Shah 3 years ago committed by GitHub
parent e6407ed405
commit e2e8834975
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 1
      librocksdb-sys/build.rs

@ -1,6 +1,7 @@
# Changelog
## [Unreleased]
* Re-add support for UTF-8 file paths on Windows (rajivshah3)
## 0.17.0 (2021-07-22)

@ -152,6 +152,7 @@ fn build_rocksdb() {
config.define("_MBCS", None);
config.define("WIN64", None);
config.define("NOMINMAX", None);
config.define("WITH_WINDOWS_UTF8_FILENAMES", "ON");
if &target == "x86_64-pc-windows-gnu" {
// Tell MinGW to create localtime_r wrapper of localtime_s function.

Loading…
Cancel
Save