mirror of https://github.com/status-im/nim-eth.git
15 lines
480 B
Nim
15 lines
480 B
Nim
--threads:on
|
|
# rocksdb_backend newChainDB fails compiling without nimOldCaseObjects as
|
|
# rocksdb init does this type of assignment
|
|
--define:nimOldCaseObjects
|
|
|
|
-d:"chronicles_sinks=textlines[stdout],json[dynamic]"
|
|
-d:"chronicles_log_level=TRACE"
|
|
-d:"chronicles_runtime_filtering=on"
|
|
|
|
# Avoid some rare stack corruption while using exceptions with a SEH-enabled
|
|
# toolchain: https://github.com/status-im/nimbus-eth2/issues/3121
|
|
@if windows and not vcc:
|
|
--define:nimRawSetjmp
|
|
@end
|