diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2022-02-05 20:19:45 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2022-02-05 20:24:13 +0200 |
commit | dda56249ae75ae6bb7c8fcb7f4792682617fdf48 (patch) | |
tree | 0cbda9ab057267564487267c6cee9da452fa396f /gnu/packages/audio.scm | |
parent | a1e84575a4bea5bbc9c742a32f2caebc48e0c587 (diff) | |
download | guix-dda56249ae75ae6bb7c8fcb7f4792682617fdf48.tar guix-dda56249ae75ae6bb7c8fcb7f4792682617fdf48.tar.gz |
gnu: webrtc-audio-processing: Fix building on riscv64-linux.
* gnu/packages/audio.scm (webrtc-audio-processing)[arguments]: Add phase
on riscv64-linux to adjust headers to add support for riscv64-linux.
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 22dd88ef0c..867011f473 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -4,7 +4,7 @@ ;;; Copyright © 2015 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2015 Alex Kost <alezost@gmail.com> ;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org> -;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2016, 2017, 2018, 2019, 2020, 2021, 2022 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com> ;;; Copyright © 2016 Nikita <nikita@n0.is> ;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org> @@ -254,6 +254,19 @@ softsynth library that can be use with other applications.") (sha256 (base32 "1gsx7k77blfy171b6g3m0k0s0072v6jcawhmx1kjs9w5zlwdkzd0")))) (build-system gnu-build-system) + (arguments + ;; TODO: Move this to a snippet or remove with the upgrade to 1.0. + (if (target-riscv64?) + (list + #:phases + #~(modify-phases %standard-phases + (add-after 'unpack 'patch-source + (lambda _ + (substitute* "webrtc/typedefs.h" + (("defined\\(__aarch64__\\)" all) + (string-append + all " || (defined(__riscv) && __riscv_xlen == 64)"))))))) + '())) (synopsis "WebRTC's Audio Processing Library") (description "WebRTC-Audio-Processing library based on Google's implementation of WebRTC.") |