mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: non-sequencer: Disable SSE when not building on x86_64.
* gnu/packages/music.scm (non-sequencer)[arguments]: Add "--disable-sse" flag when not building on x86_64.
This commit is contained in:
parent
3dac53be01
commit
e591a4d6e5
1 changed files with 7 additions and 1 deletions
|
@ -274,7 +274,13 @@ (define-public non-sequencer
|
||||||
(build-system waf-build-system)
|
(build-system waf-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ;no "check" target
|
`(#:tests? #f ;no "check" target
|
||||||
#:configure-flags '("--project=sequencer")
|
#:configure-flags
|
||||||
|
(list "--project=sequencer"
|
||||||
|
;; Disable the use of SSE unless on x86_64.
|
||||||
|
,@(if (not (string-prefix? "x86_64" (or (%current-target-system)
|
||||||
|
(%current-system))))
|
||||||
|
'("--disable-sse")
|
||||||
|
'()))
|
||||||
#:python ,python-2))
|
#:python ,python-2))
|
||||||
(inputs
|
(inputs
|
||||||
`(("jack" ,jack-1)
|
`(("jack" ,jack-1)
|
||||||
|
|
Loading…
Reference in a new issue