From 3570d092ac9efe6b996b70e525b08ac376dd66db Mon Sep 17 00:00:00 2001 From: Z572 <873216071@qq.com> Date: Sat, 27 May 2023 20:16:08 +0800 Subject: [PATCH] gnu: zita-alsa-pcmi: Do not build with "-march=native". MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/audio.scm (zita-alsa-pcmi): Do not build with "-march=native". [arguments]<#:phases>: remove '-march=native' form source/Makefile. [properties]: New field. Signed-off-by: Ludovic Courtès --- gnu/packages/audio.scm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 5adbe677d4..83d6f1c143 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -44,6 +44,7 @@ ;;; Copyright © 2023 David Thompson ;;; Copyright © 2023 Sharlatan Hellseher ;;; Copyright © 2023 Gabriel Wicki +;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -4466,7 +4467,8 @@ provide high-quality sample rate conversion.") (lambda _ (substitute* "source/Makefile" (("ldconfig") "true") - (("^LIBDIR =.*") "LIBDIR = lib\n")) + (("^LIBDIR =.*") "LIBDIR = lib\n") + (("CXXFLAGS \\+= -march=native") "")) (chdir "source") #t)) (add-after 'install 'install-symlink @@ -4479,6 +4481,7 @@ provide high-quality sample rate conversion.") (delete 'configure)))) (inputs (list alsa-lib fftw)) + (properties `((tunable? . #t))) (home-page "https://kokkinizita.linuxaudio.org") (synopsis "C++ wrapper around the ALSA API") (description