use .cfg not .nims
This commit is contained in:
parent
4eff75c1e4
commit
e04d906a50
|
@ -1,4 +0,0 @@
|
|||
if defined(windows) and not defined(vcc):
|
||||
# Avoid some rare stack corruption while using exceptions with a SEH-enabled
|
||||
# toolchain: https://github.com/status-im/nimbus-eth2/issues/3121
|
||||
switch("define", "nimRawSetjmp")
|
|
@ -0,0 +1,5 @@
|
|||
# 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
|
|
@ -1,4 +0,0 @@
|
|||
if defined(windows) and not defined(vcc):
|
||||
# Avoid some rare stack corruption while using exceptions with a SEH-enabled
|
||||
# toolchain: https://github.com/status-im/nimbus-eth2/issues/3121
|
||||
switch("define", "nimRawSetjmp")
|
|
@ -1,4 +1,10 @@
|
|||
vcc.exe = "cl.exe"
|
||||
vcc.cpp.exe = "cl.exe"
|
||||
vcc.linkerexe = "cl.exe"
|
||||
vcc.cpp.linkerexe = "cl.exe"
|
||||
vcc.cpp.linkerexe = "cl.exe"
|
||||
|
||||
# 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
|
||||
|
|
Loading…
Reference in New Issue