diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-12-31 13:59:44 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-01-10 11:47:04 -0500 |
commit | cdb2b115a874a7ab0be85963dd1f3005cbd53da0 (patch) | |
tree | 38d4da60ccd7a8ad4470bac556e638807cfcd680 | |
parent | c3c943055d60ca4f926d0dac52b7b79b44f12c42 (diff) | |
download | guix-cdb2b115a874a7ab0be85963dd1f3005cbd53da0.tar.gz guix-cdb2b115a874a7ab0be85963dd1f3005cbd53da0.zip |
gnu: mozjs-78: Disable rust-simd to workaround a build failure.
* gnu/packages/gnuzilla.scm (mozjs-78)
[configure-flags]: Disable rust-simd to avoid a build failure that occurs when
Rust is newer than 1.54.0.
-rw-r--r-- | gnu/packages/gnuzilla.scm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm index 59b526bb73..158213dd98 100644 --- a/gnu/packages/gnuzilla.scm +++ b/gnu/packages/gnuzilla.scm @@ -463,7 +463,10 @@ in C/C++.") "--enable-hardening" "--enable-optimize" "--enable-release" - "--enable-rust-simd" + ;; FIXME: rust-simd is disabled otherwise the build fails with + ;; "error: `[u32; 64]` is forbidden as the type of a const generic + ;; parameter". + "--disable-rust-simd" "--enable-readline" "--enable-shared-js" "--with-system-icu" |