Skip to content

Commit 2f2cf7d

Browse files
authored
Unrolled build for rust-lang#127960
Rollup merge of rust-lang#127960 - jieyouxu:minor-rmake-cleanup, r=fmease Cleanup dll/exe filename calculations in `run_make_support` Use `std::env::consts` constants since now we have access to them (unlike in Makefiles!) ^^ cc `@bzEq` (this is one of the places in our test suites that tries to compute e.g. dylib extension; using `std::env::consts::DLL_EXTENSION` should correctly return `a` for AIX) r? `@fmease` (thank you for the suggestion in rust-lang#127760 (comment), this also improves correctness for the support library!) try-job: aarch64-apple try-job: armhf-gnu try-job: test-various try-job: x86_64-msvc try-job: x86_64-gnu-llvm-18
2 parents 3811f40 + 5fa0d15 commit 2f2cf7d

File tree

1 file changed

+6
-30
lines changed

1 file changed

+6
-30
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
//! A collection of helpers to construct artifact names, such as names of dynamic or static
22
//! librarys which are target-dependent.
33
4-
use crate::targets::{is_darwin, is_msvc, is_windows};
4+
// FIXME(jieyouxu): convert these to return `PathBuf`s instead of strings!
5+
6+
use crate::targets::is_msvc;
57

68
/// Construct the static library name based on the target.
79
#[must_use]
@@ -31,41 +33,15 @@ pub fn static_lib_name(name: &str) -> String {
3133
/// Construct the dynamic library name based on the target.
3234
#[must_use]
3335
pub fn dynamic_lib_name(name: &str) -> String {
34-
// See tools.mk (irrelevant lines omitted):
35-
//
36-
// ```makefile
37-
// ifeq ($(UNAME),Darwin)
38-
// DYLIB = $(TMPDIR)/lib$(1).dylib
39-
// else
40-
// ifdef IS_WINDOWS
41-
// DYLIB = $(TMPDIR)/$(1).dll
42-
// else
43-
// DYLIB = $(TMPDIR)/lib$(1).so
44-
// endif
45-
// endif
46-
// ```
4736
assert!(!name.contains(char::is_whitespace), "dynamic library name cannot contain whitespace");
4837

49-
let extension = dynamic_lib_extension();
50-
if is_darwin() {
51-
format!("lib{name}.{extension}")
52-
} else if is_windows() {
53-
format!("{name}.{extension}")
54-
} else {
55-
format!("lib{name}.{extension}")
56-
}
38+
format!("{}{name}.{}", std::env::consts::DLL_PREFIX, std::env::consts::DLL_EXTENSION)
5739
}
5840

5941
/// Construct the dynamic library extension based on the target.
6042
#[must_use]
6143
pub fn dynamic_lib_extension() -> &'static str {
62-
if is_darwin() {
63-
"dylib"
64-
} else if is_windows() {
65-
"dll"
66-
} else {
67-
"so"
68-
}
44+
std::env::consts::DLL_EXTENSION
6945
}
7046

7147
/// Construct the name of a rust library (rlib).
@@ -77,5 +53,5 @@ pub fn rust_lib_name(name: &str) -> String {
7753
/// Construct the binary (executable) name based on the target.
7854
#[must_use]
7955
pub fn bin_name(name: &str) -> String {
80-
if is_windows() { format!("{name}.exe") } else { name.to_string() }
56+
format!("{name}{}", std::env::consts::EXE_SUFFIX)
8157
}

0 commit comments

Comments
 (0)