From 088a37ecef40ad022808a46299342c570392b1c6 Mon Sep 17 00:00:00 2001 From: BeastLe9enD Date: Sun, 26 Jun 2022 14:55:04 +0200 Subject: [PATCH] Rename macos library suffix from dynlib to dylib --- src/wrapper.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wrapper.rs b/src/wrapper.rs index f660ad0..94169ef 100644 --- a/src/wrapper.rs +++ b/src/wrapper.rs @@ -481,7 +481,7 @@ fn dxcompiler_lib_name() -> &'static Path { #[cfg(target_os = "macos")] fn dxcompiler_lib_name() -> &'static Path { - Path::new("./libdxcompiler.dynlib") + Path::new("./libdxcompiler.dylib") } impl Dxc {