Fix name of fluffy config file and disable log colors for Windows (#1551)

This commit is contained in:
Kim De Mey 2023-04-20 12:58:56 +02:00 committed by GitHub
parent ff90f4fd22
commit 04137f1c98
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -27,6 +27,10 @@ if defined(windows):
# set the IMAGE_FILE_LARGE_ADDRESS_AWARE flag so we can use PAE, if enabled, and access more than 2 GiB of RAM
switch("passL", "-Wl,--large-address-aware")
# Colors are disabled for Windows, see issue:
# https://github.com/status-im/nim-chronicles/issues/130
switch("define", "chronicles_colors=off")
# 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")