Skip to content

Commit ea2b699

Browse files
committed
build_native_static_lib with llvm_ar for run_make_support
1 parent 3b495bb commit ea2b699

File tree

6 files changed

+55
-32
lines changed

6 files changed

+55
-32
lines changed

Cargo.lock

-7
Original file line numberDiff line numberDiff line change
@@ -228,12 +228,6 @@ dependencies = [
228228
"backtrace",
229229
]
230230

231-
[[package]]
232-
name = "ar"
233-
version = "0.9.0"
234-
source = "registry+https://github.com/rust-lang/crates.io-index"
235-
checksum = "d67af77d68a931ecd5cbd8a3b5987d63a1d1d1278f7f6a60ae33db485cdebb69"
236-
237231
[[package]]
238232
name = "ar_archive_writer"
239233
version = "0.2.0"
@@ -3429,7 +3423,6 @@ dependencies = [
34293423
name = "run_make_support"
34303424
version = "0.2.0"
34313425
dependencies = [
3432-
"ar",
34333426
"bstr",
34343427
"build_helper",
34353428
"gimli 0.31.0",

src/tools/run-make-support/Cargo.toml

-2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,4 @@ similar = "2.5.0"
1010
wasmparser = "0.118.2"
1111
regex = "1.8" # 1.8 to avoid memchr 2.6.0, as 2.5.0 is pinned in the workspace
1212
gimli = "0.31.0"
13-
ar = "0.9.0"
14-
1513
build_helper = { path = "../build_helper" }

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

+8-21
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ pub use cc::{cc, extra_c_flags, extra_cxx_flags, Cc};
3030
pub use clang::{clang, Clang};
3131
pub use diff::{diff, Diff};
3232
pub use llvm::{
33-
llvm_filecheck, llvm_objdump, llvm_profdata, llvm_readobj, LlvmFilecheck, LlvmObjdump,
34-
LlvmProfdata, LlvmReadobj,
33+
llvm_ar, llvm_filecheck, llvm_objdump, llvm_profdata, llvm_readobj, LlvmAr, LlvmFilecheck,
34+
LlvmObjdump, LlvmProfdata, LlvmReadobj,
3535
};
3636
pub use run::{cmd, run, run_fail, run_with_args};
3737
pub use rustc::{aux_build, bare_rustc, rustc, Rustc};
@@ -61,19 +61,6 @@ pub fn target() -> String {
6161
env_var("TARGET")
6262
}
6363

64-
/// `AR`
65-
#[track_caller]
66-
pub fn ar(inputs: &[impl AsRef<Path>], output_path: impl AsRef<Path>) {
67-
let output = fs::File::create(&output_path).expect(&format!(
68-
"the file in path \"{}\" could not be created",
69-
output_path.as_ref().display()
70-
));
71-
let mut builder = ar::Builder::new(output);
72-
for input in inputs {
73-
builder.append_path(input).unwrap();
74-
}
75-
}
76-
7764
/// Check if target is windows-like.
7865
#[must_use]
7966
pub fn is_windows() -> bool {
@@ -305,12 +292,12 @@ pub fn build_native_static_lib(lib_name: &str) -> PathBuf {
305292
} else {
306293
cc().arg("-v").arg("-c").out_exe(&obj_file).input(src).run();
307294
};
308-
let mut obj_file = PathBuf::from(format!("{lib_name}.o"));
309-
if is_msvc() {
310-
obj_file.set_extension("");
311-
obj_file.set_extension("obj");
312-
}
313-
ar(&[obj_file], &lib_path);
295+
let obj_file = if is_msvc() {
296+
PathBuf::from(format!("{lib_name}.obj"))
297+
} else {
298+
PathBuf::from(format!("{lib_name}.o"))
299+
};
300+
llvm_ar().obj_to_ar().output_input(&lib_path, &obj_file).run();
314301
path(lib_path)
315302
}
316303

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

+37
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ pub fn llvm_objdump() -> LlvmObjdump {
2929
LlvmObjdump::new()
3030
}
3131

32+
/// Construct a new `llvm-ar` invocation. This assumes that `llvm-ar` is available
33+
/// at `$LLVM_BIN_DIR/llvm-ar`.
34+
pub fn llvm_ar() -> LlvmAr {
35+
LlvmAr::new()
36+
}
37+
3238
/// A `llvm-readobj` invocation builder.
3339
#[derive(Debug)]
3440
#[must_use]
@@ -57,10 +63,18 @@ pub struct LlvmObjdump {
5763
cmd: Command,
5864
}
5965

66+
/// A `llvm-ar` invocation builder.
67+
#[derive(Debug)]
68+
#[must_use]
69+
pub struct LlvmAr {
70+
cmd: Command,
71+
}
72+
6073
crate::impl_common_helpers!(LlvmReadobj);
6174
crate::impl_common_helpers!(LlvmProfdata);
6275
crate::impl_common_helpers!(LlvmFilecheck);
6376
crate::impl_common_helpers!(LlvmObjdump);
77+
crate::impl_common_helpers!(LlvmAr);
6478

6579
/// Generate the path to the bin directory of LLVM.
6680
#[must_use]
@@ -204,3 +218,26 @@ impl LlvmObjdump {
204218
self
205219
}
206220
}
221+
222+
impl LlvmAr {
223+
/// Construct a new `llvm-ar` invocation. This assumes that `llvm-ar` is available
224+
/// at `$LLVM_BIN_DIR/llvm-ar`.
225+
pub fn new() -> Self {
226+
let llvm_ar = llvm_bin_dir().join("llvm-ar");
227+
let cmd = Command::new(llvm_ar);
228+
Self { cmd }
229+
}
230+
231+
pub fn obj_to_ar(&mut self) -> &mut Self {
232+
self.cmd.arg("rcus");
233+
self
234+
}
235+
236+
/// Provide an output, then an input file. Bundled in one function, as llvm-ar has
237+
/// no "--output"-style flag.
238+
pub fn output_input(&mut self, out: impl AsRef<Path>, input: impl AsRef<Path>) -> &mut Self {
239+
self.cmd.arg(out.as_ref());
240+
self.cmd.arg(input.as_ref());
241+
self
242+
}
243+
}
+8-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1+
// When the metadata format changes, old libraries used to cause librustc to abort
2+
// when reading their metadata. The error message for this scenario was unhelpful at best.
3+
// A better error message was implemented in #12645, and this test checks that it is the
4+
// one appearing in stderr in this scenario.
5+
// See https://github.com/rust-lang/rust/pull/12645
6+
17
use run_make_support::fs_wrapper::create_file;
2-
use run_make_support::{ar, rustc};
8+
use run_make_support::{llvm_ar, rustc};
39

410
fn main() {
511
create_file("lib.rmeta");
6-
ar(&["lib.rmeta"], "libfoo-ffffffff-1.0.rlib");
12+
llvm_ar().obj_to_ar().output_input("libfoo-ffffffff-1.0.rlib", "lib.rmeta").run();
713
rustc().input("foo.rs").run_fail().assert_stderr_contains("found invalid metadata");
814
}

tests/run-make/prune-link-args/rmake.rs

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@
66
// See https://github.com/rust-lang/rust/pull/10749
77

88
//@ ignore-cross-compile
9+
//@ ignore-windows-gnu
10+
// Reason: The space is parsed as an empty linker argument on windows-gnu.
911

1012
use run_make_support::rustc;
1113

0 commit comments

Comments
 (0)