From 14eef1414725692a22fa24e027e8b1fd618d57ed Mon Sep 17 00:00:00 2001 From: Yonggang Luo Date: Fri, 11 Nov 2022 00:45:56 +0800 Subject: [PATCH] clover: empty soversion when on win32 Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/7675 Cc: mesa-stable Signed-off-by: Yonggang Luo Reviewed-by: Prodea Alexandru-Liviu Part-of: --- src/gallium/targets/opencl/meson.build | 1 + 1 file changed, 1 insertion(+) diff --git a/src/gallium/targets/opencl/meson.build b/src/gallium/targets/opencl/meson.build index 676f04f32a7..7af210b5693 100644 --- a/src/gallium/targets/opencl/meson.build +++ b/src/gallium/targets/opencl/meson.build @@ -107,6 +107,7 @@ libopencl = shared_library( ], name_prefix : host_machine.system() == 'windows' ? '' : 'lib', # otherwise mingw will create libOpenCL-1.dll or libMesaOpenCL-1.dll version : '@0@.0.0'.format(opencl_version), + soversion : host_machine.system() == 'windows' ? '' : opencl_version, install : true, )