diff --git a/ash/src/entry.rs b/ash/src/entry.rs index b27fd6427..ce71052a0 100644 --- a/ash/src/entry.rs +++ b/ash/src/entry.rs @@ -63,11 +63,11 @@ impl Entry { #[cfg(all( unix, - not(any(target_os = "macos", target_os = "ios", target_os = "android")) + not(any(target_os = "macos", target_os = "ios", target_os = "android", target_os = "fuchsia")) ))] const LIB_PATH: &str = "libvulkan.so.1"; - #[cfg(target_os = "android")] + #[cfg(any(target_os = "android", target_os = "fuchsia"))] const LIB_PATH: &str = "libvulkan.so"; #[cfg(any(target_os = "macos", target_os = "ios"))]