gnu: speexdsp: Fix building on aarch64-linux.
* gnu/packages/xiph.scm (speexdsp)[arguments]: On aarch64-linux, disable neon optimisations.
This commit is contained in:
parent
6df274073a
commit
f71ce2824d
|
@ -5,7 +5,7 @@
|
||||||
;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in>
|
;;; Copyright © 2014 Sree Harsha Totakura <sreeharsha@totakura.in>
|
||||||
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2014 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
|
;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
|
||||||
;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
|
;;; Copyright © 2015, 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
|
@ -167,6 +167,11 @@ stereo encoding, and voice activity detection.")
|
||||||
(base32
|
(base32
|
||||||
"1wcjyrnwlkayb20zdhp48y260rfyzg925qpjpljd5x9r01h8irja"))))
|
"1wcjyrnwlkayb20zdhp48y260rfyzg925qpjpljd5x9r01h8irja"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:configure-flags '(,@(if (string=? "aarch64-linux"
|
||||||
|
(%current-system))
|
||||||
|
'("--enable-neon=no") ; neon defaults to armv7-a
|
||||||
|
'()))))
|
||||||
(home-page "https://speex.org/")
|
(home-page "https://speex.org/")
|
||||||
(synopsis "Speex processing library")
|
(synopsis "Speex processing library")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue