~ruther/guix-local

4c0e7c296dae25a84c2f0f0c68bbd2351aede38c — Cayetano Santos 11 months ago 1dda62c
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>
1 files changed, 12 insertions(+), 10 deletions(-)

M gnu/packages/rocm.scm
M gnu/packages/rocm.scm => gnu/packages/rocm.scm +12 -10
@@ 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.")