blob: 81af061634b5ef579aca19a40af19354e7c449d8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
Quick workaround for libSPIRV seemingly having became a stub in glslang-1.3.296
https://bugs.gentoo.org/941968
TODO?: rather than worry with the constant issues with glslang, should likely
always force shaderc -- it's also what upstream prefers by default and so the
glslang paths are hardly tested.
--- a/src/glsl/meson.build
+++ b/src/glsl/meson.build
@@ -39,4 +39,5 @@
glslang_deps += spirv
+ glslang_deps += cxx.find_library('glslang', required: required, static: static)
if static
|