Skip to content

Commit 5ae2751

Browse files
committed
Auto merge of #14323 - bzEq:aix-gmake, r=weihanglo
Use gmake on AIX AIX's `make` is different from GNU's make. Use GNU's make on AIX for tests instead. Reference https://www.ibm.com/docs/en/aix/7.2?topic=m-make-command.
2 parents d3e84f0 + 8986af9 commit 5ae2751

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

tests/testsuite/jobserver.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,8 @@ fn validate(_: &str) {
5757
fn make_exe() -> &'static str {
5858
if cfg!(windows) {
5959
"mingw32-make"
60+
} else if cfg!(target_os = "aix") {
61+
"gmake"
6062
} else {
6163
"make"
6264
}

0 commit comments

Comments
 (0)