gnu: spirv-tools: Do not build static libraries.
* gnu/packages/vulkan.scm (spirv-tools)[arguments]: Add "-DBUILD_SHARED_LIBS=ON" in #:configure-flags.master
parent
cce9424746
commit
8a37a214ca
|
@ -87,8 +87,10 @@ and for the GLSL.std.450 extended instruction set.
|
|||
(file-name (git-file-name name version))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
`(#:configure-flags (list (string-append "-DSPIRV-Headers_SOURCE_DIR="
|
||||
(assoc-ref %build-inputs "spirv-headers")))))
|
||||
`(#:configure-flags (list "-DBUILD_SHARED_LIBS=ON"
|
||||
(string-append
|
||||
"-DSPIRV-Headers_SOURCE_DIR="
|
||||
(assoc-ref %build-inputs "spirv-headers")))))
|
||||
(inputs `(("spirv-headers" ,spirv-headers)))
|
||||
(native-inputs `(("pkg-config" ,pkg-config)
|
||||
("python" ,python)))
|
||||
|
|
Reference in New Issue