69 lines
2.2 KiB
Rust
69 lines
2.2 KiB
Rust
|
// 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 <LICENSE-APACHE or
|
||
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
||
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
||
|
// option. This file may not be copied, modified, or distributed
|
||
|
// except according to those terms.
|
||
|
|
||
|
#![deny(warnings)]
|
||
|
|
||
|
use std::process::{Command, Stdio};
|
||
|
use std::path::{Path, PathBuf};
|
||
|
|
||
|
pub fn run(cmd: &mut Command) {
|
||
|
println!("running: {:?}", cmd);
|
||
|
run_silent(cmd);
|
||
|
}
|
||
|
|
||
|
pub fn run_silent(cmd: &mut Command) {
|
||
|
let status = match cmd.status() {
|
||
|
Ok(status) => status,
|
||
|
Err(e) => fail(&format!("failed to execute command: {}", e)),
|
||
|
};
|
||
|
if !status.success() {
|
||
|
fail(&format!("command did not execute successfully: {:?}\n\
|
||
|
expected success, got: {}", cmd, status));
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub 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(),
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub fn cc2ar(cc: &Path, target: &str) -> PathBuf {
|
||
|
if target.contains("musl") || target.contains("msvc") {
|
||
|
PathBuf::from("ar")
|
||
|
} else {
|
||
|
let file = cc.file_name().unwrap().to_str().unwrap();
|
||
|
cc.parent().unwrap().join(file.replace("gcc", "ar")
|
||
|
.replace("cc", "ar")
|
||
|
.replace("clang", "ar"))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub fn output(cmd: &mut Command) -> String {
|
||
|
let output = match cmd.stderr(Stdio::inherit()).output() {
|
||
|
Ok(status) => status,
|
||
|
Err(e) => fail(&format!("failed to execute command: {}", e)),
|
||
|
};
|
||
|
if !output.status.success() {
|
||
|
panic!("command did not execute successfully: {:?}\n\
|
||
|
expected success, got: {}", cmd, output.status);
|
||
|
}
|
||
|
String::from_utf8(output.stdout).unwrap()
|
||
|
}
|
||
|
|
||
|
fn fail(s: &str) -> ! {
|
||
|
println!("\n\n{}\n\n", s);
|
||
|
std::process::exit(1);
|
||
|
}
|