apteryx pushed a commit to branch master
in repository guix.
commit 8dcf3c16515e926ef06f8fd10fd9d2400359e0bc
Author: Kaelyn Takata <[email protected]>
AuthorDate: Wed Nov 16 22:52:56 2022 +0000
gnu: spirv-tools: Disable building static libraries.
* gnu/packages/vulkan.scm (spirv-tools): Disable building static libraries
to
fix linking issues for packages such as mpv.
Signed-off-by: Marius Bakke <[email protected]>
---
gnu/packages/vulkan.scm | 3 +++
1 file changed, 3 insertions(+)
diff --git a/gnu/packages/vulkan.scm b/gnu/packages/vulkan.scm
index 74a06ab4c3..5edf7ba81a 100644
--- a/gnu/packages/vulkan.scm
+++ b/gnu/packages/vulkan.scm
@@ -90,6 +90,9 @@ and for the GLSL.std.450 extended instruction set.
(build-system cmake-build-system)
(arguments
`(#:configure-flags (list "-DBUILD_SHARED_LIBS=ON"
+ ;; Some packages like mpv fail to link
+ ;; when the static libraries are built.
+ "-DSPIRV_TOOLS_BUILD_STATIC=OFF"
(string-append
"-DSPIRV-Headers_SOURCE_DIR="
(assoc-ref %build-inputs "spirv-headers")))))