libcompiler-rt.a is dead, long live libcompiler-builtins.rlib This commit moves the logic that used to build libcompiler-rt.a into a compiler-builtins crate on top of the core crate and below the std crate. This new crate still compiles the compiler-rt instrinsics using gcc-rs but produces an .rlib instead of a static library. Also, with this commit rustc no longer passes -lcompiler-rt to the linker. This effectively makes the "no-compiler-rt" field of target specifications a no-op. Users of `no_std` will have to explicitly add the compiler-builtins crate to their crate dependency graph *if* they need the compiler-rt intrinsics. Users of the `std` have to do nothing extra as the std crate depends on compiler-builtins. Finally, this a step towards lazy compilation of std with Cargo as the compiler-rt intrinsics can now be built by Cargo instead of having to be supplied by the user by some other method. closes #34400
48 lines
1.6 KiB
Rust
48 lines
1.6 KiB
Rust
// Copyright 2016 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.
|
|
|
|
//! Implementation of `make clean` in rustbuild.
|
|
//!
|
|
//! Responsible for cleaning out a build directory of all old and stale
|
|
//! artifacts to prepare for a fresh build. Currently doesn't remove the
|
|
//! `build/cache` directory (download cache) or the `build/$target/llvm`
|
|
//! directory as we want that cached between builds.
|
|
|
|
use std::fs;
|
|
use std::path::Path;
|
|
|
|
use Build;
|
|
|
|
pub fn clean(build: &Build) {
|
|
rm_rf(build, "tmp".as_ref());
|
|
rm_rf(build, &build.out.join("tmp"));
|
|
|
|
for host in build.config.host.iter() {
|
|
|
|
let out = build.out.join(host);
|
|
|
|
rm_rf(build, &out.join("doc"));
|
|
|
|
for stage in 0..4 {
|
|
rm_rf(build, &out.join(format!("stage{}", stage)));
|
|
rm_rf(build, &out.join(format!("stage{}-std", stage)));
|
|
rm_rf(build, &out.join(format!("stage{}-rustc", stage)));
|
|
rm_rf(build, &out.join(format!("stage{}-tools", stage)));
|
|
rm_rf(build, &out.join(format!("stage{}-test", stage)));
|
|
}
|
|
}
|
|
}
|
|
|
|
fn rm_rf(build: &Build, path: &Path) {
|
|
if path.exists() {
|
|
build.verbose(&format!("removing `{}`", path.display()));
|
|
t!(fs::remove_dir_all(path));
|
|
}
|
|
}
|