~ruther/guix-local

e591a4d6e5db172f1595d665c6e477572c0d171c — Ricardo Wurmus 10 years ago 3dac53b
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.
1 files changed, 7 insertions(+), 1 deletions(-)

M gnu/packages/music.scm
M gnu/packages/music.scm => gnu/packages/music.scm +7 -1
@@ 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)