Skip to content

Commit abcfc3e

Browse files
authored
Rollup merge of rust-lang#139239 - jieyouxu:run-make-aux-build, r=Kobzol
Remove `aux_build` run-make rustc helpers They provide very little value and makes it more confusing than is helpful. Helps with rust-lang#138066. r? `@Kobzol`
2 parents bda2ea4 + f31bd74 commit abcfc3e

File tree

4 files changed

+5
-19
lines changed

4 files changed

+5
-19
lines changed

src/tools/run-make-support/src/external_deps/rustc.rs

-14
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@ pub fn bare_rustc() -> Rustc {
2222
Rustc::bare()
2323
}
2424

25-
/// Construct a new `rustc` aux-build invocation.
26-
#[track_caller]
27-
pub fn aux_build() -> Rustc {
28-
Rustc::new_aux_build()
29-
}
30-
3125
/// A `rustc` invocation builder.
3226
#[derive(Debug)]
3327
#[must_use]
@@ -67,14 +61,6 @@ impl Rustc {
6761
Self { cmd }
6862
}
6963

70-
/// Construct a new `rustc` invocation with `aux_build` preset (setting `--crate-type=lib`).
71-
#[track_caller]
72-
pub fn new_aux_build() -> Self {
73-
let mut cmd = setup_common();
74-
cmd.arg("--crate-type=lib");
75-
Self { cmd }
76-
}
77-
7864
// Argument provider methods
7965

8066
/// Configure the compilation environment.

src/tools/run-make-support/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ pub use llvm::{
6868
LlvmFilecheck, LlvmNm, LlvmObjcopy, LlvmObjdump, LlvmProfdata, LlvmReadobj,
6969
};
7070
pub use python::python_command;
71-
pub use rustc::{aux_build, bare_rustc, rustc, rustc_path, Rustc};
71+
pub use rustc::{bare_rustc, rustc, rustc_path, Rustc};
7272
pub use rustdoc::{rustdoc, Rustdoc};
7373

7474
/// [`diff`][mod@diff] is implemented in terms of the [similar] library.

tests/run-make/CURRENT_RUSTC_VERSION/rmake.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
// Check that the `CURRENT_RUSTC_VERSION` placeholder is correctly replaced by the current
44
// `rustc` version and the `since` property in feature stability gating is properly respected.
55

6-
use run_make_support::{aux_build, rfs, rustc, source_root};
6+
use run_make_support::{rfs, rustc, source_root};
77

88
fn main() {
9-
aux_build().input("stable.rs").emit("metadata").run();
9+
rustc().crate_type("lib").input("stable.rs").emit("metadata").run();
1010

1111
let output =
1212
rustc().input("main.rs").emit("metadata").extern_("stable", "libstable.rmeta").run();

tests/run-make/issue-107495-archive-permissions/rmake.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@ use std::path::Path;
44

55
#[cfg(unix)]
66
use run_make_support::libc;
7-
use run_make_support::{aux_build, rfs};
7+
use run_make_support::{rfs, rustc};
88

99
fn main() {
1010
#[cfg(unix)]
1111
unsafe {
1212
libc::umask(0o002);
1313
}
1414

15-
aux_build().arg("foo.rs").run();
15+
rustc().crate_type("lib").arg("foo.rs").run();
1616
verify(Path::new("libfoo.rlib"));
1717
}
1818

0 commit comments

Comments
 (0)