me
/
guix
Archived
1
0
Fork 0

gnu: spirv-llvm-translator: Rewrite using g-exps.

* gnu/packages/vulkan.scm (spirv-llvm-translator)[arguments]: Rewrite
using g-expressions.

Change-Id: If0025060e5aa24a9d90724966887ea03f4f8c4b3
master
Efraim Flashner 2024-06-03 09:57:32 +03:00
parent 865920e01e
commit 1615084a9a
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 13 additions and 12 deletions

View File

@ -169,19 +169,20 @@ SPIR-V, aiming to emit GLSL or MSL that looks like human-written code.")
(arguments
;; The test suite is known to fail on several architectures:
;; https://github.com/llvm/llvm-project/issues/59637
`(#:tests? ,(and (not (%current-target-system))
(target-x86-64?))
(list
#:tests? (and (not (%current-target-system))
(target-x86-64?))
#:configure-flags
(list (string-append "-DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR="
(assoc-ref %build-inputs "spirv-headers")
"/include/spirv")
(string-append "-DLLVM_EXTERNAL_LIT="
(assoc-ref %build-inputs "python-lit")
"/bin/lit")
(string-append "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath="
(assoc-ref %outputs "out") "/lib")
"-DBUILD_SHARED_LIBS=ON"
"-DLLVM_SPIRV_INCLUDE_TESTS=ON")))
#~(list (string-append "-DLLVM_EXTERNAL_SPIRV_HEADERS_SOURCE_DIR="
#$(this-package-native-input "spirv-headers")
"/include/spirv")
(string-append "-DLLVM_EXTERNAL_LIT="
#$(this-package-native-input "python-lit")
"/bin/lit")
(string-append "-DCMAKE_EXE_LINKER_FLAGS=-Wl,-rpath="
#$output "/lib")
"-DBUILD_SHARED_LIBS=ON"
"-DLLVM_SPIRV_INCLUDE_TESTS=ON")))
(inputs (list llvm-18))
(native-inputs (list clang-18 llvm-18 python-lit spirv-headers))
(home-page "https://github.com/KhronosGroup/SPIRV-LLVM-Translator")