From e2313515977e26378784a01db25e564b73be5dea Mon Sep 17 00:00:00 2001 From: oskarth Date: Thu, 1 Feb 2024 11:47:11 +0800 Subject: [PATCH] chore: Mention dylib experimental and disable by default --- README.md | 2 +- config-example.toml | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index f076690f..d6a5b39c 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ dir = "examples/circom/keccak256" # Directory of the circuit name = "keccak256_256_test" # Name of the circuit [dylib] -use_dylib = true # Options: true, false +use_dylib = false # Options: true, false name = "keccak256.dylib" # Name of the dylib file, only used if use_dylib is true ``` diff --git a/config-example.toml b/config-example.toml index f3d0b341..fa570b10 100644 --- a/config-example.toml +++ b/config-example.toml @@ -14,5 +14,7 @@ dir = "examples/circom/keccak256" # Directory of the circuit name = "keccak256_256_test" # Name of the circuit [dylib] -use_dylib = true # Options: true, false +# NOTE: Dylib support is experimental and requires some fiddling in iOS +# See https://github.com/oskarth/mopro/pull/37 and https://github.com/oskarth/mopro/pull/38 +use_dylib = false # Options: true, false name = "keccak256.dylib" # Name of the dylib file, only used if use_dylib is true