diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-06-07 18:39:34 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-06-09 08:28:50 +0300 |
commit | aaf8891ed4f4e0cc792a711919bf63e996c5a4d4 (patch) | |
tree | 375369cddd701cb2f24920af178c4d3ed126e96b | |
parent | 22e7ba67ddcc9ebceafbfb0b95dd38313a854c93 (diff) |
gnu: tbb: Fix building on riscv64-linux.
* gnu/packages/tbb.scm (tbb)[arguments]: When building for riscv64-linux
always link the test suite with -latomic.
-rw-r--r-- | gnu/packages/tbb.scm | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/gnu/packages/tbb.scm b/gnu/packages/tbb.scm index f22282264c..b2d276ac8b 100644 --- a/gnu/packages/tbb.scm +++ b/gnu/packages/tbb.scm @@ -3,7 +3,7 @@ ;;; Copyright © 2016 Nikita <nikita@n0.is> ;;; Copyright © 2019 Tobias Geerinckx-Rice <me@tobias.gr> ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> -;;; Copyright © 2022 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2022, 2023 Efraim Flashner <efraim@flashner.co.il> ;;; ;;; This file is part of GNU Guix. ;;; @@ -48,7 +48,11 @@ (patches (search-patches "tbb-other-arches.patch")))) (build-system cmake-build-system) (arguments - `(#:configure-flags '("-DTBB_STRICT=OFF"))) ;; Don't fail on warnings + `(#:configure-flags + '(,@(if (target-riscv64?) + '("-DTBB_TEST_LINK_FLAGS=-latomic") + `()) + "-DTBB_STRICT=OFF"))) ;; Don't fail on warnings (home-page "https://www.threadingbuildingblocks.org") (synopsis "C++ library for parallel programming") (description |