diff options
author | Oleg Pykhalov <[email protected]> | 2024-10-28 21:10:48 +0300 |
---|---|---|
committer | Oleg Pykhalov <[email protected]> | 2024-11-01 18:19:58 +0300 |
commit | 78de845aaaa8d557f08a53ad34629bc566565f96 (patch) | |
tree | 754ae9c9c6e6062ce5b1971e4df14b0d68892211 | |
parent | 870b7d69b4b06d01cdf6bfca71bcc161c0b832bf (diff) |
gnu: looking-glass-client: Fix build.
* gnu/packages/virtualization.scm
(looking-glass-client)[arguments]<#:configure-flags>: Add
'-DENABLE_BACKTRACE=no' flag.
Change-Id: Iecf644b60d99793782a7d1069194fe7f95337cb3
-rw-r--r-- | gnu/packages/virtualization.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm index 776acdfe06..be1a72d4a9 100644 --- a/gnu/packages/virtualization.scm +++ b/gnu/packages/virtualization.scm @@ -24,7 +24,7 @@ ;;; Copyright © 2021 Vincent Legoll <[email protected]> ;;; Copyright © 2021 Petr Hodina <[email protected]> ;;; Copyright © 2021 Raghav Gururajan <[email protected]> -;;; Copyright © 2022 Oleg Pykhalov <[email protected]> +;;; Copyright © 2022, 2024 Oleg Pykhalov <[email protected]> ;;; Copyright © 2022, 2023 Ekaitz Zarraga <[email protected]> ;;; Copyright © 2022 Arun Isaac <[email protected]> ;;; Copyright © 2022 Zhu Zihao <[email protected]> @@ -2183,7 +2183,8 @@ Machine Protocol.") (list #:tests? #f ;No tests are available. ;; Package uses "-march=native" by default. We disable that to build with the ;; lowest supported architecture for reproducibility and CPU compatibility. - #:configure-flags #~'("-DOPTIMIZE_FOR_NATIVE=OFF") + #:configure-flags #~'("-DOPTIMIZE_FOR_NATIVE=OFF" + "-DENABLE_BACKTRACE=no") #:make-flags #~'("CC=gcc") #:phases #~(modify-phases %standard-phases (add-before 'configure 'chdir-to-client |