From 3072c03600ad7a65038a33bdf7e393062213ddf7 Mon Sep 17 00:00:00 2001 From: Sebastian Miasojed Date: Mon, 18 Nov 2024 13:59:48 +0100 Subject: [PATCH] Fix parallel feature --- crates/solidity/Cargo.toml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/crates/solidity/Cargo.toml b/crates/solidity/Cargo.toml index 790cf51..ee92201 100644 --- a/crates/solidity/Cargo.toml +++ b/crates/solidity/Cargo.toml @@ -52,7 +52,6 @@ inkwell = { workspace = true, features = ["target-riscv", "llvm18-0-no-llvm-link default = [] parallel = ["rayon"] -#TODO: Use pthreads -C target-feature=+atomics,+bulk-memory -Clink-arg=-pthread in compilation and enable `parallel` feature -# Enable parallel_native by default only for non-emscripten targets +# Enable parallel by default only for non-emscripten targets [target.'cfg(not(target_os = "emscripten"))'.features] -default = ["parallel_native"] +default = ["parallel"]