mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 04:29:25 -05:00
gnu: vulkan-loader: Skip tests on riscv64-linux.
* gnu/packages/vulkan.scm (vulkan-loader)[arguments]: Skip tests when building on riscv64-linux.
This commit is contained in:
parent
f776eb3f87
commit
f0a51a2bda
1 changed files with 4 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2017, 2018, 2019 Rutger Helling <rhelling@mykolab.com>
|
||||
;;; Copyright © 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2018, 2023 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2020, 2023 Marius Bakke <marius@gnu.org>
|
||||
;;; Copyright © 2021 Mathieu Othacehe <othacehe@gnu.org>
|
||||
;;; Copyright © 2022 Kaelyn Takata <kaelyn.alexi@protonmail.com>
|
||||
|
@ -27,6 +27,7 @@ (define-module (gnu packages vulkan)
|
|||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix utils)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix build-system cmake)
|
||||
#:use-module (guix build-system gnu)
|
||||
|
@ -227,6 +228,8 @@ (define-public vulkan-loader
|
|||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:tests? (not (or (%current-target-system)
|
||||
(target-riscv64?)))
|
||||
#:configure-flags
|
||||
#~(list (string-append "-DVULKAN_HEADERS_INSTALL_DIR="
|
||||
(dirname (dirname
|
||||
|
|
Loading…
Reference in a new issue