Skip to content

Commit ff0424b

Browse files
authored
Unrolled build for rust-lang#128649
Rollup merge of rust-lang#128649 - ChrisDenton:param-passing, r=jieyouxu run-make: Enable msvc for `no-duplicate-libs` and `zero-extend-abi-param-passing` The common thing between these two tests is to use `#[link(..., kind="static")]` so that it doesn't try to do a DLL import. `zero-extend-abi-param-passing` also needs to have an optimized static library but there's only helper function for a non-optimized version. Rather than copy/pasting the code (and adding the optimization flag) I reused the same code so that it more easily be kept in sync. try-job: i686-msvc try-job: x86_64-msvc
2 parents 2f3dc46 + 2e5341a commit ff0424b

File tree

7 files changed

+42
-24
lines changed

7 files changed

+42
-24
lines changed

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

+22-5
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,31 @@ use crate::targets::{is_darwin, is_msvc, is_windows};
1212
/// Built from a C file.
1313
#[track_caller]
1414
pub fn build_native_static_lib(lib_name: &str) -> PathBuf {
15+
build_native_static_lib_internal(lib_name, false)
16+
}
17+
18+
/// Builds an optimized static lib (`.lib` on Windows MSVC and `.a` for the rest) with the given name.
19+
/// Built from a C file.
20+
#[track_caller]
21+
pub fn build_native_static_lib_optimized(lib_name: &str) -> PathBuf {
22+
build_native_static_lib_internal(lib_name, true)
23+
}
24+
25+
#[track_caller]
26+
fn build_native_static_lib_internal(lib_name: &str, optimzed: bool) -> PathBuf {
1527
let obj_file = if is_msvc() { format!("{lib_name}") } else { format!("{lib_name}.o") };
1628
let src = format!("{lib_name}.c");
1729
let lib_path = static_lib_name(lib_name);
18-
if is_msvc() {
19-
cc().arg("-c").out_exe(&obj_file).input(src).run();
20-
} else {
21-
cc().arg("-v").arg("-c").out_exe(&obj_file).input(src).run();
22-
};
30+
31+
let mut cc = cc();
32+
if !is_msvc() {
33+
cc.arg("-v");
34+
}
35+
if optimzed {
36+
cc.optimize();
37+
}
38+
cc.arg("-c").out_exe(&obj_file).input(src).optimize().run();
39+
2340
let obj_file = if is_msvc() {
2441
PathBuf::from(format!("{lib_name}.obj"))
2542
} else {

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

+11
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,17 @@ impl Cc {
115115
self.cmd.arg(path.as_ref());
116116
self
117117
}
118+
119+
/// Optimize the output.
120+
/// Equivalent to `-O3` for GNU-compatible linkers or `-O2` for MSVC linkers.
121+
pub fn optimize(&mut self) -> &mut Self {
122+
if is_msvc() {
123+
self.cmd.arg("-O2");
124+
} else {
125+
self.cmd.arg("-O3");
126+
}
127+
self
128+
}
118129
}
119130

120131
/// `EXTRACFLAGS`

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ pub use external_deps::{c_build, cc, clang, htmldocck, llvm, python, rustc, rust
4545

4646
// These rely on external dependencies.
4747
pub use cc::{cc, cxx, extra_c_flags, extra_cxx_flags, Cc};
48-
pub use c_build::{build_native_dynamic_lib, build_native_static_lib, build_native_static_lib_cxx};
48+
pub use c_build::{build_native_dynamic_lib, build_native_static_lib, build_native_static_lib_optimized, build_native_static_lib_cxx};
4949
pub use clang::{clang, Clang};
5050
pub use htmldocck::htmldocck;
5151
pub use llvm::{

tests/run-make/no-duplicate-libs/main.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#[link(name = "foo")] // linker should drop this library, no symbols used
2-
#[link(name = "bar")] // symbol comes from this library
3-
#[link(name = "foo")] // now linker picks up `foo` b/c `bar` library needs it
1+
#[link(name = "foo", kind = "static")] // linker should drop this library, no symbols used
2+
#[link(name = "bar", kind = "static")] // symbol comes from this library
3+
#[link(name = "foo", kind = "static")] // now linker picks up `foo` b/c `bar` library needs it
44
extern "C" {
55
fn bar();
66
}

tests/run-make/no-duplicate-libs/rmake.rs

-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,6 @@
99
//@ ignore-cross-compile
1010
// Reason: the compiled binary is executed
1111

12-
//@ ignore-msvc
13-
// Reason: native compilation results in an unresolved external symbol
14-
1512
use run_make_support::{build_native_static_lib, run, rustc};
1613

1714
fn main() {

tests/run-make/zero-extend-abi-param-passing/param_passing.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// LLVM optimization choices. See additional note below for an
33
// example.
44

5-
#[link(name = "bad")]
5+
#[link(name = "bad", kind = "static")]
66
extern "C" {
77
pub fn c_read_value(a: u32, b: u32, c: u32) -> u16;
88
}

tests/run-make/zero-extend-abi-param-passing/rmake.rs

+4-11
Original file line numberDiff line numberDiff line change
@@ -6,20 +6,13 @@
66
// while simultaneously interfacing with a C library and using the -O3 flag.
77
// See https://github.com/rust-lang/rust/issues/97463
88

9-
//@ ignore-msvc
10-
// Reason: the rustc compilation fails due to an unresolved external symbol
11-
129
//@ ignore-cross-compile
1310
// Reason: The compiled binary is executed.
14-
15-
use run_make_support::{cc, is_msvc, llvm_ar, run, rustc, static_lib_name};
11+
use run_make_support::{build_native_static_lib_optimized, run, rustc};
1612

1713
fn main() {
18-
// The issue exercised by this test specifically needs needs `-O`
19-
// flags (like `-O3`) to reproduce. Thus, we call `cc()` instead of
20-
// the nicer `build_native_static_lib`.
21-
cc().arg("-c").arg("-O3").out_exe("bad.o").input("bad.c").run();
22-
llvm_ar().obj_to_ar().output_input(static_lib_name("bad"), "bad.o").run();
23-
rustc().input("param_passing.rs").arg("-lbad").opt_level("3").run();
14+
// The issue exercised by this test specifically needs an optimized native static lib.
15+
build_native_static_lib_optimized("bad");
16+
rustc().input("param_passing.rs").opt_level("3").run();
2417
run("param_passing");
2518
}

0 commit comments

Comments
 (0)