32-bit Windows: use PAE to access more than 2 GiB of RAM
This commit is contained in:
parent
52035c676d
commit
6b22485197
4
nim.cfg
4
nim.cfg
|
@ -11,6 +11,10 @@
|
|||
--passL:"-Wl,--stack,8388608"
|
||||
# https://github.com/nim-lang/Nim/issues/4057
|
||||
--tlsEmulation:off
|
||||
@if i386:
|
||||
# set the IMAGE_FILE_LARGE_ADDRESS_AWARE flag so we can use PAE, if enabled, and access more than 2 GiB of RAM
|
||||
--passL:"-Wl,--large-address-aware"
|
||||
@end
|
||||
|
||||
# The dynamic Chronicles output currently prevents us from using colors on Windows
|
||||
# because these require direct manipulations of the stdout File object.
|
||||
|
|
Loading…
Reference in New Issue