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.
This commit is contained in:
Maxim Cournoyer 2021-12-31 13:59:44 -05:00
parent c3c943055d
commit cdb2b115a8
No known key found for this signature in database
GPG key ID: 1260E46482E63562

View file

@ -463,7 +463,10 @@ (define-public mozjs-78
"--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"