-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: add target check, fix ci device type
- Loading branch information
1 parent
261abce
commit 9226e3f
Showing
3 changed files
with
22 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# config-example.toml | ||
|
||
[build] | ||
# For iOS device_type can be x86_64, simulator, device | ||
# For Android device_type can be x86_64, arm, arm64 | ||
device_type = "x86_64" # Options: x86_64, simulator, device, arm, arm64 | ||
|
||
# debug is for Rust library to be in debug mode and release for release mode | ||
# We recommend release mode by default for performance | ||
build_mode = "release" # Options: debug, release | ||
|
||
[circuit] | ||
dir = "examples/circom/keccak256" # Directory of the circuit | ||
name = "keccak256_256_test" # Name of the circuit | ||
|
||
[dylib] | ||
# 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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters