From 951f328723894c029b71fd995b098d5a19a87a9e Mon Sep 17 00:00:00 2001 From: Michel Zou Date: Tue, 23 Feb 2021 09:28:25 +0100 Subject: [PATCH] lavapipe: set empty dll prefix Reviewed-by: Jesse Natalie Part-of: --- src/gallium/targets/lavapipe/meson.build | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/gallium/targets/lavapipe/meson.build b/src/gallium/targets/lavapipe/meson.build index 25ca3ac..1648118 100644 --- a/src/gallium/targets/lavapipe/meson.build +++ b/src/gallium/targets/lavapipe/meson.build @@ -15,6 +15,7 @@ libvulkan_lvp = shared_library( gnu_symbol_visibility : 'hidden', link_args : [ld_args_bsymbolic, ld_args_gc_sections], dependencies : driver_swrast, + name_prefix : host_machine.system() == 'windows' ? '' : 'lib', install : true, ) @@ -22,7 +23,7 @@ icd_file_name = 'libvulkan_lvp.so' module_dir = join_paths(get_option('prefix'), get_option('libdir')) if with_platform_windows module_dir = join_paths(get_option('prefix'), get_option('bindir')) - icd_file_name = 'libvulkan_lvp.dll' + icd_file_name = 'vulkan_lvp.dll' endif lvp_icd = custom_target( -- 2.7.4