// Copyright 2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. extern crate cc; use std::env; use std::fs; use std::path::PathBuf; use std::process::Command; 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(), s => s.to_string(), } } fn main() { let target = env::var("TARGET").expect("TARGET was not set"); let host = env::var("HOST").expect("HOST was not set"); let num_jobs = env::var("NUM_JOBS").expect("NUM_JOBS was not set"); let out_dir = PathBuf::from(env::var_os("OUT_DIR").expect("OUT_DIR was not set")); println!("TARGET={}", target.clone()); println!("HOST={}", host.clone()); println!("NUM_JOBS={}", num_jobs.clone()); println!("OUT_DIR={:?}", out_dir); let build_dir = out_dir.join("build"); println!("BUILD_DIR={:?}", build_dir); let src_dir = env::current_dir().expect("failed to get current directory"); println!("SRC_DIR={:?}", src_dir); let unsupported_targets = [ "rumprun", "bitrig", "openbsd", "msvc", "emscripten", "fuchsia", "redox", "wasm32", ]; for i in &unsupported_targets { if target.contains(i) { panic!("jemalloc does not support target: {}", target); } } if let Some(jemalloc) = env::var_os("JEMALLOC_OVERRIDE") { println!("jemalloc override set"); let jemalloc = PathBuf::from(jemalloc); 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 } fs::create_dir_all(&build_dir).unwrap(); // Disable -Wextra warnings - jemalloc doesn't compile free of warnings with // it enabled: https://github.com/jemalloc/jemalloc/issues/1196 let compiler = cc::Build::new().extra_warnings(false).get_compiler(); let cflags = compiler.args().iter().map(|s| s.to_str().unwrap()) .collect::>().join(" "); println!("CC={:?}", compiler.path()); println!("CFLAGS={:?}", cflags); let jemalloc_src_dir = out_dir.join("jemalloc"); println!("JEMALLOC_SRC_DIR={:?}", jemalloc_src_dir); if jemalloc_src_dir.exists() { std::fs::remove_dir_all(jemalloc_src_dir.clone()).unwrap(); } // Copy jemalloc submodule to the OUT_DIR assert!(out_dir.exists(), "OUT_DIR does not exist"); let mut cmd = Command::new("cp"); cmd.arg("-rf") .arg("jemalloc") .arg(jemalloc_src_dir); run (&mut cmd); // Configuration files let config_files = ["configure", "VERSION"]; // Verify that the configuration files are up-to-date if env::var_os("JEMALLOC_SYS_VERIFY_CONFIGURE").is_some() { assert!(!jemalloc_src_dir.join("configure").exists(), "the jemalloc source directory cannot contain configuration files like 'configure' and 'VERSION'"); // Run autoconf: let mut cmd = Command::new("autoconf"); cmd.current_dir(jemalloc_src_dir.clone()); run(&mut cmd); for f in &config_files { let mut cmd = Command::new("diff"); cmd.arg(jemalloc_src_dir.join(f)) .arg(format!("configure/{}", f)); run(&mut cmd); } } else { // Copy the configuration files to jemalloc's source directory for f in &config_files { let mut cmd = Command::new("cp"); cmd.arg(format!("configure/{}", f)) .arg(jemalloc_src_dir.join(f)); run(&mut cmd); } } // Run configure: let configure = jemalloc_src_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("CPPFLAGS", cflags.clone()) .arg("--disable-cxx") ; // jemalloc's configure doesn't detect this value // automatically for this target: if target == "sparc64-unknown-linux-gnu" { cmd.arg("--with-lg-quantum=4"); } cmd.arg("--with-jemalloc-prefix=_rjem_"); if env::var_os("CARGO_FEATURE_DEBUG").is_some() { println!("CARGO_FEATURE_DEBUG set"); cmd.arg("--enable-debug"); } if env::var_os("CARGO_FEATURE_PROFILING").is_some() { println!("CARGO_FEATURE_PROFILING set set"); cmd.arg("--enable-prof"); } cmd.arg(format!("--host={}", gnu_target(&target))); cmd.arg(format!("--build={}", gnu_target(&host))); cmd.arg(format!("--prefix={}", out_dir.display())); run(&mut cmd); let make = if host.contains("bitrig") || host.contains("dragonfly") || host.contains("freebsd") || host.contains("netbsd") || host.contains("openbsd") { "gmake" } else { "make" }; // Make: run(Command::new(make) .current_dir(&build_dir) .arg("-j").arg(num_jobs.clone())); if env::var_os("JEMALLOC_SYS_RUN_TESTS").is_some() { println!("JEMALLOC_SYS_RUN_TESTS set: building and running jemalloc tests..."); // Make tests: run(Command::new(make) .current_dir(&build_dir) .arg("-j").arg(num_jobs.clone()) .arg("tests")); // Run tests: run(Command::new(make) .current_dir(&build_dir) .arg("check")); } // Make install: run(Command::new(make) .current_dir(&build_dir) .arg("install_lib_static") .arg("install_include") .arg("-j").arg(num_jobs.clone())); println!("cargo:root={}", out_dir.display()); // Linkage directives to pull in jemalloc and its dependencies. // // On some platforms we need to be sure to link in `pthread` which jemalloc // depends on, and specifically on android we need to also link to libgcc. // Currently jemalloc is compiled with gcc which will generate calls to // intrinsics that are libgcc specific (e.g. those intrinsics aren't present in // libcompiler-rt), so link that in to get that support. 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-lib=pthread"); } } fn run(cmd: &mut Command) { println!("running: {:?}", cmd); let status = match cmd.status() { Ok(status) => status, Err(e) => panic!("failed to execute command: {}", e), }; if !status.success() { panic!("command did not execute successfully: {:?}\n\ expected success, got: {}", cmd, status); } }