Skip to content

Commit fc9278f

Browse files
authored
Unrolled build for #144751
Rollup merge of #144751 - dalvescb:curtisd/aix_libextension, r=Noratrieb Add correct dynamic_lib_extension for aix AIX uses `.a` for static and shared libraries, this fixes a number of `run-make` tests on AIX
2 parents 6c02dd4 + 37d52ed commit fc9278f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ pub fn dynamic_lib_extension() -> &'static str {
3535
"dylib"
3636
} else if target.contains("windows") {
3737
"dll"
38+
} else if target.contains("aix") {
39+
"a"
3840
} else {
3941
"so"
4042
}

0 commit comments

Comments
 (0)