mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: opencl-clhpp: Update to 2.0.15.
Note that this version bump removes the deprecated cl.hpp header interface. * gnu/packages/opencl.scm (opencl-clhpp): Update to 2.0.15. [#:configure-flags]: Remove prefix.
This commit is contained in:
parent
ac52d4b95c
commit
95a86b9bab
1 changed files with 3 additions and 10 deletions
|
@ -95,7 +95,7 @@ (define-public opencl-headers-1.0
|
||||||
(define-public opencl-clhpp
|
(define-public opencl-clhpp
|
||||||
(package
|
(package
|
||||||
(name "opencl-clhpp")
|
(name "opencl-clhpp")
|
||||||
(version "2.0.10")
|
(version "2.0.15")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -103,21 +103,14 @@ (define-public opencl-clhpp
|
||||||
(url "https://github.com/KhronosGroup/OpenCL-CLHPP")
|
(url "https://github.com/KhronosGroup/OpenCL-CLHPP")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0h5kpg5cl8wzfnqmv6i26aig2apv06ffm9p3rh35938n9r8rladm"))
|
(base32 "1wycdbvwbdn7lqdd3sby8471qg2zdisr70218ava6cfvxdsqcp83"))
|
||||||
(file-name (git-file-name name version))))
|
(file-name (git-file-name name version))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("python" ,python-wrapper)))
|
`(("python" ,python-wrapper)))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("opencl-headers" ,opencl-headers)))
|
`(("opencl-headers" ,opencl-headers)))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:configure-flags
|
`(#:configure-flags (list "-DBUILD_EXAMPLES=OFF" "-DBUILD_TESTS=OFF")
|
||||||
(let ((out (assoc-ref %outputs "out")))
|
|
||||||
(list
|
|
||||||
"-DBUILD_EXAMPLES=OFF"
|
|
||||||
"-DBUILD_TESTS=OFF"
|
|
||||||
(string-append "-DCMAKE_INSTALL_PREFIX="
|
|
||||||
(assoc-ref %outputs "out")
|
|
||||||
"/include")))
|
|
||||||
;; The regression tests require a lot more dependencies.
|
;; The regression tests require a lot more dependencies.
|
||||||
#:tests? #f))
|
#:tests? #f))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
|
|
Loading…
Reference in a new issue