mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 12:39:36 -05:00
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
This commit is contained in:
parent
c5db054e64
commit
f14513b660
1 changed files with 5 additions and 0 deletions
|
@ -2424,6 +2424,11 @@ (define-public graphene
|
|||
#: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")
|
||||
|
|
Loading…
Reference in a new issue