Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/target
**/*.rs.bk
Cargo.lock
.DS_Store
.DS_Store
.idea
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ override = ["libmimalloc-sys/override"]
debug = ["libmimalloc-sys/debug"]
debug_in_debug = ["libmimalloc-sys/debug_in_debug"]
local_dynamic_tls = ["libmimalloc-sys/local_dynamic_tls"]
win_direct_tls = ["libmimalloc-sys/win_direct_tls"]
no_thp = ["libmimalloc-sys/no_thp"]
extended = ["libmimalloc-sys/extended"]
v2 = ["libmimalloc-sys/v2"]
3 changes: 2 additions & 1 deletion libmimalloc-sys/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ cty = { version = "0.2", optional = true }
libc = "0.2"

[build-dependencies]
cc = "1.0"
cc = "1.2"

[features]
secure = []
Expand All @@ -41,6 +41,7 @@ override = []
extended = ["cty"]
arena = []
local_dynamic_tls = []
win_direct_tls = []
no_thp = []
v2 = []

Expand Down
71 changes: 58 additions & 13 deletions libmimalloc-sys/build.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
use std::env;
use std::path::Path;
use std::fs;
use std::path::{Path, PathBuf};

fn main() {
let mut build = cc::Build::new();
Expand All @@ -11,30 +12,57 @@ fn main() {
};

let cargo_manifest_dir = env::var("CARGO_MANIFEST_DIR").expect("CARGO_MANIFEST_DIR not set");
let include_dir = Path::new(&cargo_manifest_dir)
.join("c_src/mimalloc/")
.join(version)
let include_root = Path::new(&cargo_manifest_dir)
.join("c_src")
.join("mimalloc")
.join(version);
let include_dir = include_root
.join("include")
.to_str()
.expect("include path is not valid UTF-8")
.to_string();
let static_source = include_root.join("src").join("static.c");

// Make the include directory available to consumers via the `DEP_MIMALLOC_INCLUDE_DIR`
// environment variable.
println!("cargo:INCLUDE_DIR={include_dir}");

build.include(format!("c_src/mimalloc/{version}/include"));
build.include(format!("c_src/mimalloc/{version}/src"));
build.file(format!("c_src/mimalloc/{version}/src/static.c"));

let target_os = env::var("CARGO_CFG_TARGET_OS").expect("target_os not defined!");
let target_family = env::var("CARGO_CFG_TARGET_FAMILY").expect("target_family not defined!");
let target_env = env::var("CARGO_CFG_TARGET_ENV").unwrap_or_default();
let target_vendor = env::var("CARGO_CFG_TARGET_VENDOR").expect("target_vendor not defined!");
let target_arch = env::var("CARGO_CFG_TARGET_ARCH").expect("target_arch not defined!");
let cargo_debug = env::var("DEBUG")
.map(|value| value == "true" || value == "1")
.unwrap_or(false);
let debug_enabled = env::var_os("CARGO_FEATURE_DEBUG").is_some()
|| (env::var_os("CARGO_FEATURE_DEBUG_IN_DEBUG").is_some() && cargo_debug);

if target_family != "windows" {
build.flag("-Wno-error=date-time");
}

if target_env == "msvc" {
// Mimalloc expects the MSVC/clang-cl build to use the C++ atomics path.
build.cpp(true);
build.std("c++17");
build.flag_if_supported("/Zc:__cplusplus");

let wrapper =
PathBuf::from(env::var("OUT_DIR").expect("OUT_DIR not set")).join("mimalloc-static.cc");
let include = static_source.to_string_lossy().replace('\\', "/");
fs::write(&wrapper, format!("#include \"{include}\"\n"))
.expect("failed to write mimalloc C++ wrapper");
build.file(wrapper);
} else {
build.file(&static_source);
}

let compiler = build.get_compiler();

if env::var_os("CARGO_FEATURE_OVERRIDE").is_some() {
// Overriding malloc is only available on windows in shared mode, but we
// only ever build a static lib.
Expand All @@ -45,12 +73,19 @@ fn main() {
build.define("MI_OSX_ZONE", Some("1"));
build.define("MI_OSX_INTERPOSE", Some("1"));
}
if !compiler.is_like_msvc() {
build.flag_if_supported("-fno-builtin-malloc");
}
}

if env::var_os("CARGO_FEATURE_SECURE").is_some() {
build.define("MI_SECURE", "4");
}

if target_os == "windows" && env::var_os("CARGO_FEATURE_WIN_DIRECT_TLS").is_some() {
build.define("MI_WIN_DIRECT_TLS", "1");
}

let dynamic_tls = env::var("CARGO_FEATURE_LOCAL_DYNAMIC_TLS").is_ok();

if target_family == "unix" && target_os != "haiku" {
Expand All @@ -61,24 +96,34 @@ fn main() {
}
}

if target_arch == "aarch64" {
if compiler.is_like_msvc() {
if compiler.is_like_clang() {
build.flag_if_supported("-march=armv8.1-a");
} else {
build.flag_if_supported("/arch:armv8.1");
}
} else {
build.flag_if_supported("-march=armv8.1-a");
}
}

if (target_os == "linux" || target_os == "android")
&& env::var_os("CARGO_FEATURE_NO_THP").is_some()
{
build.define("MI_NO_THP", "1");
}

if env::var_os("CARGO_FEATURE_DEBUG").is_some()
|| (env::var_os("CARGO_FEATURE_DEBUG_IN_DEBUG").is_some() && cfg!(debug_assertions))
{
if debug_enabled {
build.define("MI_DEBUG", "3");
build.define("MI_SHOW_ERRORS", "1");
} else {
// Remove heavy debug assertions etc
// Remove heavy debug assertions etc.
build.define("MI_DEBUG", "0");
}

if build.get_compiler().is_like_msvc() {
build.cpp(true);
if !cargo_debug {
build.define("MI_BUILD_RELEASE", None);
build.define("NDEBUG", None);
}
}

build.compile("mimalloc");
Expand Down
4 changes: 2 additions & 2 deletions test-override-with-dylib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ edition = "2018"
publish = false

[dependencies]
libc = { version = "^0.2.8", default-features = false }
libc = { version = "^0.2.186", default-features = false }
libmimalloc-sys = { path = "../libmimalloc-sys" }

[build-dependencies]
cc = "^1.0.13"
cc = "^1.2.60"

[features]
override = ["libmimalloc-sys/override"]
Loading