use std::{
env,
ffi::OsString,
fs, io,
path::{Path, PathBuf},
process::Command,
};
include!("src/env.rs");
macro_rules! info {
($($args:tt)*) => { println!($($args)*) }
}
macro_rules! warning {
($arg:tt, $($args:tt)*) => {
println!(concat!(concat!("cargo:warning=\"", $arg), "\""), $($args)*)
}
}
fn read_and_watch_env_impl<T, F>(name: &str, env_getter: F) -> Option<T>
where
F: Fn(&str) -> Option<T>,
{
let prefix = env::var("TARGET").unwrap().to_uppercase().replace('-', "_");
let prefixed_name = format!("{}_{}", prefix, name);
println!("cargo:rerun-if-env-changed={}", prefixed_name);
if let Some(value) = env_getter(&prefixed_name) {
return Some(value);
}
println!("cargo:rerun-if-env-changed={}", name);
env_getter(name)
}
fn read_and_watch_env(name: &str) -> Result<String, env::VarError> {
read_and_watch_env_impl(name, |n| env::var(n).ok()).ok_or(env::VarError::NotPresent)
}
fn read_and_watch_env_os(name: &str) -> Option<OsString> {
read_and_watch_env_impl(name, |n| env::var_os(n))
}
fn copy_recursively(src: &Path, dst: &Path) -> io::Result<()> {
if !dst.exists() {
fs::create_dir_all(dst)?;
}
for entry in fs::read_dir(src)? {
let entry = entry?;
let ft = entry.file_type()?;
if ft.is_dir() {
copy_recursively(&entry.path(), &dst.join(entry.file_name()))?;
} else {
fs::copy(entry.path(), dst.join(entry.file_name()))?;
}
}
Ok(())
}
fn expect_env(name: &str) -> String {
env::var(name).unwrap_or_else(|_| panic!("{} was not set", name))
}
#[allow(clippy::cognitive_complexity)]
fn main() {
let target = expect_env("TARGET");
let host = expect_env("HOST");
let num_jobs = expect_env("NUM_JOBS");
let out_dir = PathBuf::from(env::var_os("OUT_DIR").expect("OUT_DIR was not set"));
let src_dir = env::current_dir().expect("failed to get current directory");
let version = expect_env("CARGO_PKG_VERSION");
let je_version = version
.split_once('+')
.expect("jemalloc version is missing")
.1;
info!("TARGET={}", target);
info!("HOST={}", host);
info!("NUM_JOBS={}", num_jobs);
info!("OUT_DIR={:?}", out_dir);
let build_dir = out_dir.join("build");
info!("BUILD_DIR={:?}", build_dir);
info!("SRC_DIR={:?}", src_dir);
if UNSUPPORTED_TARGETS.iter().any(|i| target.contains(i)) {
panic!("jemalloc does not support target: {}", target);
}
if UNTESTED_TARGETS.iter().any(|i| target.contains(i)) {
warning!("jemalloc support for `{}` is untested", target);
}
let mut use_prefix =
env::var("CARGO_FEATURE_UNPREFIXED_MALLOC_ON_SUPPORTED_PLATFORMS").is_err();
if !use_prefix
&& NO_UNPREFIXED_MALLOC_TARGETS
.iter()
.any(|i| target.contains(i))
{
warning!(
"Unprefixed `malloc` requested on unsupported platform `{}` => using prefixed `malloc`",
target
);
use_prefix = true;
}
if use_prefix {
println!("cargo:rustc-cfg=prefixed");
}
if let Some(jemalloc) = read_and_watch_env_os("JEMALLOC_OVERRIDE") {
info!("jemalloc override set");
let jemalloc = PathBuf::from(jemalloc);
assert!(
jemalloc.exists(),
"Path to `jemalloc` in `JEMALLOC_OVERRIDE={}` does not exist",
jemalloc.display()
);
println!(
"cargo:rustc-link-search=native={}",
jemalloc.parent().unwrap().display()
);
let stem = jemalloc.file_stem().unwrap().to_str().unwrap();
let name = jemalloc.file_name().unwrap().to_str().unwrap();
let kind = if name.ends_with(".a") {
"static"
} else {
"dylib"
};
println!("cargo:rustc-link-lib={}={}", kind, &stem[3..]);
return;
}
let compiler = cc::Build::new().extra_warnings(false).get_compiler();
let cflags = compiler
.args()
.iter()
.map(|s| s.to_str().unwrap())
.collect::<Vec<_>>()
.join(" ");
info!("CC={:?}", compiler.path());
info!("CFLAGS={:?}", cflags);
assert!(out_dir.exists(), "OUT_DIR does not exist");
let jemalloc_repo_dir = PathBuf::from("jemalloc");
info!("JEMALLOC_REPO_DIR={:?}", jemalloc_repo_dir);
if build_dir.exists() {
fs::remove_dir_all(build_dir.clone()).unwrap();
}
copy_recursively(&jemalloc_repo_dir, &build_dir)
.expect("failed to copy jemalloc source code to OUT_DIR");
assert!(build_dir.exists());
let config_files = ["configure"];
for f in &config_files {
fs::copy(Path::new("configure").join(f), build_dir.join(f))
.expect("failed to copy config file to OUT_DIR");
}
let configure = build_dir.join("configure");
let mut cmd = Command::new("sh");
cmd.arg(
configure
.to_str()
.unwrap()
.replace("C:\\", "/c/")
.replace('\\', "/"),
)
.current_dir(&build_dir)
.env("CC", compiler.path())
.env("CFLAGS", cflags.clone())
.env("LDFLAGS", cflags.clone())
.env("CPPFLAGS", cflags)
.arg(format!("--with-version={je_version}"))
.arg("--disable-cxx")
.arg("--enable-doc=no")
.arg("--enable-shared=no");
if target.contains("ios") {
cmd.arg("--with-lg-page=14");
}
let mut malloc_conf = String::new();
if let Some(bg) = BackgroundThreadSupport::new(&target) {
if bg.always_enabled {
malloc_conf += "background_thread:true";
}
} else {
malloc_conf += "background_thread:false";
}
if let Ok(malloc_conf_opts) = read_and_watch_env("JEMALLOC_SYS_WITH_MALLOC_CONF") {
if !malloc_conf.is_empty() {
malloc_conf.push(',');
}
malloc_conf.push_str(&malloc_conf_opts);
}
if !malloc_conf.is_empty() {
info!("--with-malloc-conf={}", malloc_conf);
cmd.arg(format!("--with-malloc-conf={malloc_conf}"));
}
if let Ok(lg_page) = read_and_watch_env("JEMALLOC_SYS_WITH_LG_PAGE") {
info!("--with-lg-page={}", lg_page);
cmd.arg(format!("--with-lg-page={lg_page}"));
}
if let Ok(lg_hugepage) = read_and_watch_env("JEMALLOC_SYS_WITH_LG_HUGEPAGE") {
info!("--with-lg-hugepage={}", lg_hugepage);
cmd.arg(format!("--with-lg-hugepage={lg_hugepage}"));
}
if let Ok(lg_quantum) = read_and_watch_env("JEMALLOC_SYS_WITH_LG_QUANTUM") {
info!("--with-lg-quantum={}", lg_quantum);
cmd.arg(format!("--with-lg-quantum={lg_quantum}"));
}
if let Ok(lg_vaddr) = read_and_watch_env("JEMALLOC_SYS_WITH_LG_VADDR") {
info!("--with-lg-vaddr={}", lg_vaddr);
cmd.arg(format!("--with-lg-vaddr={lg_vaddr}"));
}
if use_prefix {
cmd.arg("--with-jemalloc-prefix=_rjem_");
info!("--with-jemalloc-prefix=_rjem_");
}
cmd.arg("--with-private-namespace=_rjem_");
if env::var("CARGO_FEATURE_DEBUG").is_ok() {
info!("CARGO_FEATURE_DEBUG set");
cmd.arg("--enable-debug");
}
if env::var("CARGO_FEATURE_PROFILING").is_ok() {
info!("CARGO_FEATURE_PROFILING set");
cmd.arg("--enable-prof");
}
if env::var("CARGO_FEATURE_STATS").is_ok() {
info!("CARGO_FEATURE_STATS set");
cmd.arg("--enable-stats");
} else {
info!("CARGO_FEATURE_STATS not set");
cmd.arg("--disable-stats");
}
if env::var("CARGO_FEATURE_DISABLE_INITIAL_EXEC_TLS").is_ok() {
info!("CARGO_FEATURE_DISABLE_INITIAL_EXEC_TLS set");
cmd.arg("--disable-initial-exec-tls");
}
if env::var("CARGO_FEATURE_DISABLE_CACHE_OBLIVIOUS").is_ok() {
info!("CARGO_FEATURE_DISABLE_CACHE_OBLIVIOUS set");
cmd.arg("--disable-cache-oblivious");
}
cmd.arg(format!("--host={}", gnu_target(&target)));
cmd.arg(format!("--build={}", gnu_target(&host)));
cmd.arg(format!("--prefix={}", out_dir.display()));
run_and_log(&mut cmd, &build_dir.join("config.log"));
let make = make_cmd(&host);
run(Command::new(make)
.current_dir(&build_dir)
.arg("-j")
.arg(num_jobs.clone()));
if env::var("JEMALLOC_SYS_RUN_JEMALLOC_TESTS").is_ok() {
info!("Building and running jemalloc tests...");
run(Command::new(make)
.current_dir(&build_dir)
.arg("-j")
.arg(num_jobs.clone())
.arg("tests"));
run(Command::new(make).current_dir(&build_dir).arg("check"));
}
run(Command::new(make)
.current_dir(&build_dir)
.arg("install_lib_static")
.arg("install_include")
.arg("-j")
.arg(num_jobs));
println!("cargo:root={}", out_dir.display());
if target.contains("windows") {
println!("cargo:rustc-link-lib=static=jemalloc");
} else {
println!("cargo:rustc-link-lib=static=jemalloc_pic");
}
println!("cargo:rustc-link-search=native={}/lib", build_dir.display());
if target.contains("android") {
println!("cargo:rustc-link-lib=gcc");
} else if !target.contains("windows") {
println!("cargo:rustc-link-arg=-pthread");
}
if target.contains("riscv") {
println!("cargo:rustc-link-lib=atomic");
}
println!("cargo:rerun-if-changed=jemalloc");
if target.contains("android") {
cc::Build::new()
.file("src/pthread_atfork.c")
.compile("pthread_atfork");
println!("cargo:rerun-if-changed=src/pthread_atfork.c");
}
}
fn run_and_log(cmd: &mut Command, log_file: &Path) {
execute(cmd, || {
run(Command::new("tail").arg("-n").arg("100").arg(log_file));
})
}
fn run(cmd: &mut Command) {
execute(cmd, || ());
}
fn execute(cmd: &mut Command, on_fail: impl FnOnce()) {
println!("running: {cmd:?}");
let status = match cmd.status() {
Ok(status) => status,
Err(e) => panic!("failed to execute command: {}", e),
};
if !status.success() {
on_fail();
panic!(
"command did not execute successfully: {:?}\n\
expected success, got: {}",
cmd, status
);
}
}
fn gnu_target(target: &str) -> String {
match target {
"i686-pc-windows-msvc" => "i686-pc-win32".to_string(),
"x86_64-pc-windows-msvc" => "x86_64-pc-win32".to_string(),
"i686-pc-windows-gnu" => "i686-w64-mingw32".to_string(),
"x86_64-pc-windows-gnu" => "x86_64-w64-mingw32".to_string(),
"armv7-linux-androideabi" => "arm-linux-androideabi".to_string(),
"riscv64gc-unknown-linux-gnu" => "riscv64-linux-gnu".to_string(),
"riscv64gc-unknown-linux-musl" => "riscv64-linux-musl".to_string(),
s => s.to_string(),
}
}
fn make_cmd(host: &str) -> &'static str {
const GMAKE_HOSTS: &[&str] = &[
"bitrig",
"dragonfly",
"freebsd",
"netbsd",
"openbsd",
"chimera-linux",
];
if GMAKE_HOSTS.iter().any(|i| host.contains(i)) {
"gmake"
} else if host.contains("windows") {
"mingw32-make"
} else {
"make"
}
}
struct BackgroundThreadSupport {
always_enabled: bool,
}
impl BackgroundThreadSupport {
fn new(target: &str) -> Option<Self> {
let runtime_support = env::var("CARGO_FEATURE_BACKGROUND_THREADS_RUNTIME_SUPPORT").is_ok();
let always_enabled = env::var("CARGO_FEATURE_BACKGROUND_THREADS").is_ok();
if !runtime_support {
assert!(
!always_enabled,
"enabling `background_threads` requires `background_threads_runtime_support`"
);
return None;
}
if NO_BG_THREAD_TARGETS.iter().any(|i| target.contains(i)) {
warning!(
"`background_threads_runtime_support` not supported for `{}`",
target
);
}
Some(Self { always_enabled })
}
}