11 lines
394 B
Nim
11 lines
394 B
Nim
--threads:on
|
|
# The compiler doth protest too much, methinks, about all these cases where it can't
|
|
# do its (N)RVO pass: https://github.com/nim-lang/RFCs/issues/230
|
|
--warning[ObservableStores]:off
|
|
|
|
# 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
|