Skip to content
Snippets Groups Projects
Commit e591a4d6 authored by Ricardo Wurmus's avatar Ricardo Wurmus
Browse files

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.
parent 3dac53be
No related branches found
No related tags found
No related merge requests found
...@@ -274,7 +274,13 @@ (define-public non-sequencer ...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment