Skip to content

Commit c69770d

Browse files
committed
Migrate static-pie scripts to rmake
1 parent f90d4e4 commit c69770d

File tree

3 files changed

+29
-42
lines changed

3 files changed

+29
-42
lines changed

tests/run-make/static-pie/check_clang_version.sh

-20
This file was deleted.

tests/run-make/static-pie/check_gcc_version.sh

-20
This file was deleted.

tests/run-make/static-pie/rmake.rs

+29-2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,40 @@
88
use std::process::Command;
99

1010
use run_make_support::llvm_readobj;
11+
use run_make_support::regex::Regex;
1112
use run_make_support::rustc;
1213
use run_make_support::{cmd, run_with_args, target};
1314

15+
// Minimum major versions supporting -static-pie
16+
const GCC_VERSION: u32 = 8;
17+
const CLANG_VERSION: u32 = 9;
18+
19+
// Return `true` if the `compiler` version supports `-static-pie`.
1420
fn ok_compiler_version(compiler: &str) -> bool {
15-
let check_file = format!("check_{compiler}_version.sh");
21+
let (trigger, version_threshold) = match compiler {
22+
"clang" => ("__clang_major__", CLANG_VERSION),
23+
"gcc" => ("__GNUC__", GCC_VERSION),
24+
other => panic!("unexpected compiler '{other}', expected 'clang' or 'gcc'"),
25+
};
26+
27+
if Command::new(compiler).spawn().is_err() {
28+
eprintln!("No {compiler} version detected");
29+
return false;
30+
}
1631

17-
Command::new(check_file).status().is_ok_and(|status| status.success())
32+
let compiler_output =
33+
cmd(compiler).stdin(trigger).arg("-").arg("-E").arg("-x").arg("c").run().stdout_utf8();
34+
let re = Regex::new(r"(?m)^(\d+)").unwrap();
35+
let version: u32 =
36+
re.captures(&compiler_output).unwrap().get(1).unwrap().as_str().parse().unwrap();
37+
38+
if version >= version_threshold {
39+
eprintln!("{compiler} supports -static-pie");
40+
true
41+
} else {
42+
eprintln!("{compiler} too old to support -static-pie, skipping test");
43+
false
44+
}
1845
}
1946

2047
fn test(compiler: &str) {

0 commit comments

Comments
 (0)