guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

09/416: gnu: spirv-tools: Disable building static libraries.


From: guix-commits
Subject: 09/416: gnu: spirv-tools: Disable building static libraries.
Date: Fri, 14 Apr 2023 15:25:11 -0400 (EDT)

apteryx pushed a commit to branch master
in repository guix.

commit 8dcf3c16515e926ef06f8fd10fd9d2400359e0bc
Author: Kaelyn Takata <kaelyn.alexi@protonmail.com>
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 <marius@gnu.org>
---
 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")))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]