From 24c3287eaf94ea6b6715b01ddd47652a16281973 Mon Sep 17 00:00:00 2001 From: Adam Barth Date: Mon, 1 Apr 2024 02:22:02 -0700 Subject: [PATCH] Add Fuchsia support (#626) Co-authored-by: Marijn Suijten --- ash/src/entry.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ash/src/entry.rs b/ash/src/entry.rs index 7af6b263c..c58669d3d 100644 --- a/ash/src/entry.rs +++ b/ash/src/entry.rs @@ -64,11 +64,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"))]