diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-05-02 17:03:15 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-05-06 23:16:31 +0300 |
commit | f14513b660b213b79e203529929fccec5325d7a0 (patch) | |
tree | d4badda367d1d0c3f05f517af72d7026a3cb4d91 /gnu | |
parent | c5db054e645427890e12b85e8273eceefa8ccc26 (diff) | |
download | guix-f14513b660b213b79e203529929fccec5325d7a0.tar.gz guix-f14513b660b213b79e203529929fccec5325d7a0.zip |
gnu: graphene: Fix build on armhf-linux.
* gnu/packages/gtk.scm (graphene)[arguments]: When building for
armhf-linux add a configure-flag to disable neon optimizations.
Change-Id: I42b412d3f7536180e959e268b68f2c292edda749
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/gtk.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index b0098e780e..7367be1d1a 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -2424,6 +2424,11 @@ Parcellite and adds bugfixes and features.") #:configure-flags (list "-Dinstalled_tests=false" + ;; Armhf with neon in graphene segfaulting is a known issue. + ;; https://github.com/ebassi/graphene/issues/215 + ,@(if (target-arm32?) + '("-Darm_neon=false") + '()) ,@(if (%current-target-system) ;; Introspection requires running binaries for 'host' on 'build'. '("-Dintrospection=disabled") |