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
|
@ -274,7 +274,13 @@ Guile.")
|
|||
(build-system waf-build-system)
|
||||
(arguments
|
||||
`(#: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))
|
||||
(inputs
|
||||
`(("jack" ,jack-1)
|
||||
|
|
Loading…
Reference in New Issue