You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
option(BUILD_DOC "generates the documenation with doxygen."OFF)
43
-
option(TAG_VERSION "the tagged version, which should be used" 3.0.0)
44
-
option(ETH_NANO "build minimal eth verification.(eth_getTransactionReceipt)"ON)
45
-
option(ETH_BASIC "build basic eth verification.(all rpc-calls except eth_call)"ON)
46
-
option(ETH_FULL "build full eth verification.(including eth_call)"ON)
47
-
option(IPFS "build IPFS verification"ON)
48
-
option(COLOR "Enable color codes for debug"ON)
49
-
option(BTC "if true, the bitcoin verifiers will be build"ON)
50
-
option(IN3API "build the USN-API which offer better interfaces and additional functions on top of the pure verification"ON)
51
-
option(USE_PRECOMPUTED_EC "if true the secp256k1 curve uses precompiled tables to boost performance. turning this off makes ecrecover slower, but saves about 37kb."ON)
52
-
option(LOGGING "if set logging and human readable error messages will be inculded in th executable, otherwise only the error code is used. (saves about 19kB)"ON)
53
-
option(EVM_GAS "if true the gas costs are verified when validating a eth_call. This is a optimization since most calls are only interessted in the result. EVM_GAS would be required if the contract uses gas-dependend op-codes."true)
54
-
option(IN3_LIB "if true a shared anmd static library with all in3-modules will be build."ON)
55
-
option(TEST"builds the tests and also adds special memory-management, which detects memory leaks, but will cause slower performance"OFF)
56
-
option(FAST_MATH "Math optimizations used in the EVM. This will also increase the filesize."OFF)
57
-
option(SEGGER_RTT "Use the segger real time transfer terminal as the logging mechanism"OFF)
58
-
option(CURL_BLOCKING "if true the curl-request will block until the response is received"OFF)
59
-
option(JAVA "build the java-binding (shared-lib and jar-file)"OFF)
60
-
option(JAVA_MULTI_LIBS "embedds multiple shared libs in the jar"OFF)
61
-
option(WASM "Includes the WASM-Build. In order to build it you need emscripten as toolchain. Usually you also want to turn off other builds in this case."OFF)
62
-
option(ASMJS "compiles the code as asm.js."OFF)
63
-
option(WASM_EMBED "embedds the wasm as base64-encoded into the js-file"ON)
64
-
option(WASM_EMMALLOC "use ther smaller EMSCRIPTEN Malloc, which reduces the size about 10k, but may be a bit slower"ON)
65
-
option(WASM_SYNC "intiaializes the WASM synchronisly, which allows to require and use it the same function, but this will not be supported by chrome (4k limit)"OFF)
66
-
option(CODE_COVERAGE "Builds targets with code coverage instrumentation. (Requires GCC or Clang)"OFF)
option(PAY_ETH "support for direct Eth-Payment"OFF)
69
-
option(USE_SCRYPT "integrate scrypt into the build in order to allow decrypt_key for scrypt encoded keys."ON)
70
-
option(USE_CURL "if true the curl transport will be built (with a dependency to libcurl)"ON)
71
-
option(USE_WINHTTP "if true the winhttp transport will be built (with a dependency to winhttp)"OFF)
72
-
option(LEDGER_NANO "include support for nano ledger"OFF)
73
-
option(ESP_IDF "include support for ESP-IDF microcontroller framework"OFF)
74
-
option(ASSERTIONS "includes assertions into the code, which help track errors but may cost time during runtime"OFF)
75
-
OPTION(TRANSPORTS "builds transports, which may require extra libraries."ON)
76
-
OPTION(IN3_SERVER "support for proxy server as part of the cmd-tool, which allows to start the cmd-tool with the -p option and listens to the given port for rpc-requests"OFF)
77
-
OPTION(CMD "build the comandline utils"ON)
78
-
OPTION(RECORDER "enable recording option for reproduce executions"ON)
79
-
OPTION(POA "support POA verification including validatorlist updates"OFF)
80
-
OPTION(MULTISIG "add capapbility to sign with a multig. Currrently only gnosis safe is supported"ON)
81
-
OPTION(ZKSYNC "add RPC-function to handle zksync-payments"ON)
82
-
OPTION(ZKCRYPTO_LIB "Path to the static zkcrypto-lib"OFF)
83
-
OPTION(SENTRY "Enable Sentry"OFF)
84
-
OPTION(BTC_PRE_BPI34 "Enable BTC-Verfification for blocks before BIP34 was activated"ON)
85
-
OPTION(PK_SIGNER "Enable Signing with private keys"ON)
0 commit comments