Skip to content

Commit c1663a5

Browse files
Fix: Issue causing incompatibility with Vulkano on Android (#166)
1 parent a592084 commit c1663a5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

shaderc-sys/build/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ fn main() {
357357
}
358358
} {
359359
match (target_os.as_str(), target_env.as_str()) {
360-
("linux", _) => {
360+
("linux" | "android", _) => {
361361
println!("cargo:rustc-link-search=native={search_dir_str}");
362362
println!("cargo:rustc-link-lib={lib_kind}={lib_name}");
363363
return;

0 commit comments

Comments
 (0)