efraim pushed a commit to branch rust-team
in repository guix.
commit 910bb8971e821234cb024ae246ba90a017a72bc9
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Nov 5 17:07:42 2024 +0200
gnu: make-torbrowser: Fix building with newer rust.
* gnu/packages/tor-browsers.scm (make-torbrowser)[arguments]: Adjust the
configure-flags to temporarily disable rust SIMD optimizations.
Change-Id: I54431581f2a681ec2b5402238e0bc78c038cfbc1
---
gnu/packages/tor-browsers.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tor-browsers.scm b/gnu/packages/tor-browsers.scm
index e517f9b214..d626e60088 100644
--- a/gnu/packages/tor-browsers.scm
+++ b/gnu/packages/tor-browsers.scm
@@ -321,7 +321,9 @@ Browser.")
"--disable-debug"
"--disable-debug-symbols"
- "--enable-rust-simd"
+ ;; TODO: Re-enable after updating to the 128 ESR.
+ ;"--enable-rust-simd"
+ "--disable-rust-simd"
"--enable-release"
"--enable-optimize"
"--enable-strip"