diff options
| author | Janneke Nieuwenhuizen <janneke@gnu.org> | 2025-01-01 15:36:58 +0100 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2025-07-18 20:17:19 +0200 |
| commit | 398d64f8298a5572195319cd384c5412efbb336c (patch) | |
| tree | 29f9b25e0e9708cb4e3457ce33d5c894e9ccdb33 /gnu/packages | |
| parent | 0e1a42ad51c1822afa8ae5d1044478566568b2d2 (diff) | |
gnu: orbit2: Fix build with gcc-14.
* gnu/packages/gnome.scm (orbit2): Add CFLAGS to #:configure-flags to relax
gcc-14's strictness.
Change-Id: I1c094a09f338335733197837e420211587aca833
Diffstat (limited to 'gnu/packages')
| -rw-r--r-- | gnu/packages/gnome.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 4bff472edc6..38cc250ff70 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -3942,7 +3942,10 @@ functionality was designed to be as reusable and portable as possible.") ;; The "timeout-server" test hangs when run in parallel. #:parallel-tests? #f #:configure-flags - #~'(;; We don't need static libraries, plus they don't build reproducibly + #~'(#$(string-append "CFLAGS=-g -O2" + " -Wno-error=implicit-int" + " -Wno-error=incompatible-pointer-types") + ;; We don't need static libraries, plus they don't build reproducibly ;; (non-deterministic ordering of .o files in the archive.) "--disable-static" |
