me
/
guix
Archived
1
0
Fork 0

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
master
Efraim Flashner 2024-05-02 17:03:15 +03:00
parent c5db054e64
commit f14513b660
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 5 additions and 0 deletions

View File

@ -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")