|
8 | 8 | use std::process::Command;
|
9 | 9 |
|
10 | 10 | use run_make_support::llvm_readobj;
|
| 11 | +use run_make_support::regex::Regex; |
11 | 12 | use run_make_support::rustc;
|
12 | 13 | use run_make_support::{cmd, run_with_args, target};
|
13 | 14 |
|
| 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`. |
14 | 20 | 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 | + } |
16 | 31 |
|
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 | + } |
18 | 45 | }
|
19 | 46 |
|
20 | 47 | fn test(compiler: &str) {
|
|
0 commit comments