From cffc04f3b2cc68ee77728bf3eb31880c004b8e2c Mon Sep 17 00:00:00 2001 From: Nick Cao Date: Wed, 16 Oct 2024 16:28:47 -0400 Subject: [PATCH] wasmer: mark withLLVM broken --- pkgs/development/interpreters/wasmer/default.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/development/interpreters/wasmer/default.nix b/pkgs/development/interpreters/wasmer/default.nix index e821bd063d9d..f75b5bed48ca 100644 --- a/pkgs/development/interpreters/wasmer/default.nix +++ b/pkgs/development/interpreters/wasmer/default.nix @@ -8,7 +8,7 @@ , CoreFoundation , SystemConfiguration , Security -, withLLVM ? !stdenv.hostPlatform.isDarwin +, withLLVM ? false , withSinglepass ? !(stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) }: @@ -69,5 +69,8 @@ rustPlatform.buildRustPackage rec { homepage = "https://wasmer.io/"; license = licenses.mit; maintainers = with maintainers; [ Br1ght0ne shamilton nickcao ]; + # error: multiple fields are never read + # --> lib/compiler-llvm/src/translator/intrinsics.rs:141:9 + broken = withLLVM; }; }