Skip to content

Commit 6011216

Browse files
committed
Support architecture environment specific semver lists
This allow lists like "linux-gnu-x86_64" which is only used for Linux, using GNU libc on 64 bit x86.
1 parent 0758ff0 commit 6011216

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libc-test/build.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,9 @@ fn do_semver() {
9797
if target_env != "" {
9898
let os_env = format!("{}-{}", os, target_env);
9999
process_semver_file(&mut output, &mut semver_root, &os_env);
100+
101+
let os_env_arch = format!("{}-{}-{}", os, target_env, arch);
102+
process_semver_file(&mut output, &mut semver_root, &os_env_arch);
100103
}
101104
}
102105

0 commit comments

Comments
 (0)