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.
master
Ricardo Wurmus 2015-10-17 10:10:07 +02:00
parent 3dac53be01
commit e591a4d6e5
1 changed files with 7 additions and 1 deletions

View File

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