fork of https://github.com/rustwasm/wasm-pack for the needs of NextGraph.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
4.1 KiB
119 lines
4.1 KiB
//! Building a Rust crate into a `.wasm` binary.
|
|
|
|
use child;
|
|
use command::build::BuildProfile;
|
|
use emoji;
|
|
use failure::{Error, ResultExt};
|
|
use std::path::Path;
|
|
use std::process::Command;
|
|
use std::str;
|
|
use PBAR;
|
|
|
|
/// Ensure that `rustc` is present and that it is >= 1.30.0
|
|
pub fn check_rustc_version() -> Result<String, Error> {
|
|
let local_minor_version = rustc_minor_version();
|
|
match local_minor_version {
|
|
Some(mv) => {
|
|
if mv < 30 {
|
|
bail!(
|
|
"Your version of Rust, '1.{}', is not supported. Please install Rust version 1.30.0 or higher.",
|
|
mv.to_string()
|
|
)
|
|
} else {
|
|
Ok(mv.to_string())
|
|
}
|
|
}
|
|
None => bail!("We can't figure out what your Rust version is- which means you might not have Rust installed. Please install Rust version 1.30.0 or higher."),
|
|
}
|
|
}
|
|
|
|
// from https://github.com/alexcrichton/proc-macro2/blob/79e40a113b51836f33214c6d00228934b41bd4ad/build.rs#L44-L61
|
|
fn rustc_minor_version() -> Option<u32> {
|
|
macro_rules! otry {
|
|
($e:expr) => {
|
|
match $e {
|
|
Some(e) => e,
|
|
None => return None,
|
|
}
|
|
};
|
|
}
|
|
let output = otry!(Command::new("rustc").arg("--version").output().ok());
|
|
let version = otry!(str::from_utf8(&output.stdout).ok());
|
|
let mut pieces = version.split('.');
|
|
if pieces.next() != Some("rustc 1") {
|
|
return None;
|
|
}
|
|
otry!(pieces.next()).parse().ok()
|
|
}
|
|
|
|
/// Ensure that `rustup` has the `wasm32-unknown-unknown` target installed for
|
|
/// current toolchain
|
|
pub fn rustup_add_wasm_target() -> Result<(), Error> {
|
|
let mut cmd = Command::new("rustc");
|
|
cmd.arg("--print").arg("sysroot");
|
|
let output =
|
|
child::run_capture_stdout(cmd, "rustc").context("Learning about rustc's sysroot")?;
|
|
let sysroot = Path::new(output.trim());
|
|
|
|
// If this exists then we for sure have a wasm32 target so there's no need
|
|
// to progress further.
|
|
if sysroot.join("lib/rustlib/wasm32-unknown-unknown").exists() {
|
|
return Ok(());
|
|
}
|
|
|
|
// ... otherwise fall back to rustup to add the target
|
|
let msg = format!("{}Adding Wasm target...", emoji::TARGET);
|
|
PBAR.info(&msg);
|
|
let mut cmd = Command::new("rustup");
|
|
cmd.arg("target").arg("add").arg("wasm32-unknown-unknown");
|
|
child::run(cmd, "rustup").context("Adding the wasm32-unknown-unknown target with rustup")?;
|
|
Ok(())
|
|
}
|
|
|
|
/// Run `cargo build` targetting `wasm32-unknown-unknown`.
|
|
pub fn cargo_build_wasm(
|
|
path: &Path,
|
|
profile: BuildProfile,
|
|
extra_options: &Vec<String>,
|
|
) -> Result<(), Error> {
|
|
let msg = format!("{}Compiling to Wasm...", emoji::CYCLONE);
|
|
PBAR.info(&msg);
|
|
let mut cmd = Command::new("cargo");
|
|
cmd.current_dir(path).arg("build").arg("--lib");
|
|
match profile {
|
|
BuildProfile::Profiling => {
|
|
// Once there are DWARF debug info consumers, force enable debug
|
|
// info, because builds that use the release cargo profile disables
|
|
// debug info.
|
|
//
|
|
// cmd.env("RUSTFLAGS", "-g");
|
|
cmd.arg("--release");
|
|
}
|
|
BuildProfile::Release => {
|
|
cmd.arg("--release");
|
|
}
|
|
BuildProfile::Dev => {
|
|
// Plain cargo builds use the dev cargo profile, which includes
|
|
// debug info by default.
|
|
}
|
|
}
|
|
cmd.arg("--target").arg("wasm32-unknown-unknown");
|
|
cmd.args(extra_options);
|
|
child::run(cmd, "cargo build").context("Compiling your crate to WebAssembly failed")?;
|
|
Ok(())
|
|
}
|
|
|
|
/// Run `cargo build --tests` targetting `wasm32-unknown-unknown`.
|
|
///
|
|
/// This generates the `Cargo.lock` file that we use in order to know which version of
|
|
/// wasm-bindgen-cli to use when running tests.
|
|
pub fn cargo_build_wasm_tests(path: &Path, debug: bool) -> Result<(), Error> {
|
|
let mut cmd = Command::new("cargo");
|
|
cmd.current_dir(path).arg("build").arg("--tests");
|
|
if !debug {
|
|
cmd.arg("--release");
|
|
}
|
|
cmd.arg("--target").arg("wasm32-unknown-unknown");
|
|
child::run(cmd, "cargo build").context("Compilation of your program failed")?;
|
|
Ok(())
|
|
}
|
|
|