summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCayetano Santos <csantosb@inventati.org>2025-08-04 19:11:18 +0200
committerJohn Kehayias <john.kehayias@protonmail.com>2025-08-05 12:39:23 -0400
commit4c0e7c296dae25a84c2f0f0c68bbd2351aede38c (patch)
tree57fd550cf5f29671cf39fa69f2d5d4f13c30a257
parent1dda62cce084ab0e1b9646fd1fa7636040cf4286 (diff)
gnu: rocm-device-libs: Disable tests.
* gnu/packages/rocm.scm (rocm-device-libs)[arguments]: Disable tests. Use g-expressions. [home-page]: Update. Change-Id: Ic39e3ac45573fc534282b2592ff9143fdf08d566 Signed-off-by: John Kehayias <john.kehayias@protonmail.com>
-rw-r--r--gnu/packages/rocm.scm22
1 files changed, 12 insertions, 10 deletions
diff --git a/gnu/packages/rocm.scm b/gnu/packages/rocm.scm
index 9bccd3f6f0f..b65ac28b063 100644
--- a/gnu/packages/rocm.scm
+++ b/gnu/packages/rocm.scm
@@ -82,17 +82,19 @@ tasks needed for the ROCM software stack.")
(source %rocm-llvm-origin)
(build-system cmake-build-system)
(arguments
- `(#:build-type "Release"
- #:configure-flags
- (list "-DCMAKE_SKIP_BUILD_RPATH=FALSE"
- "-DCMAKE_BUILD_WITH_INSTALL_RPATH=FALSE")
- #:phases
- (modify-phases %standard-phases
- (add-after 'unpack 'chdir
- (lambda _
- (chdir "amd/device-libs"))))))
+ (list
+ #:tests? #f ; Not sure how to run them.
+ #:build-type "Release"
+ #:configure-flags
+ #~(list "-DCMAKE_SKIP_BUILD_RPATH=FALSE"
+ "-DCMAKE_BUILD_WITH_INSTALL_RPATH=FALSE")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'chdir
+ (lambda _
+ (chdir "amd/device-libs"))))))
(inputs (list llvm-for-rocm))
- (home-page "https://github.com/ROCm/ROCm-Device-Libs")
+ (home-page "https://github.com/ROCm/llvm-project/")
(synopsis "ROCm Device libraries")
(description "AMD-specific device-side language runtime libraries, namely
oclc, ocml, ockl, opencl, hip and hc.")