We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e974acb commit 283a9bbCopy full SHA for 283a9bb
.github/workflows/ci.yml
@@ -160,10 +160,6 @@ jobs:
160
161
- name: Run tests
162
run: |
163
- if [[ "${{ matrix.target.os }}" == "windows" ]]; then
164
- # https://github.com/status-im/nimbus-eth2/issues/3121
165
- export NIMFLAGS="-d:nimRawSetjmp"
166
- fi
167
nim --version
168
nimble --version
169
nimble install -y --depsOnly
nim.cfg
@@ -0,0 +1,5 @@
1
+# Avoid some rare stack corruption while using exceptions with a SEH-enabled
2
+# toolchain: https://github.com/status-im/nimbus-eth2/issues/3121
3
+@if windows and not vcc:
4
+ --define:nimRawSetjmp
5
+@end
0 commit comments