fix Azure Pipelines 64-bit build
This commit is contained in:
parent
18234c031b
commit
1ce6d6bf31
|
@ -69,7 +69,7 @@ jobs:
|
|||
git config --global core.autocrlf false
|
||||
git submodule --quiet update --init --recursive
|
||||
scripts/setup_official_tests.sh jsonTestsCache
|
||||
mingw32-make -j2 ARCH_OVERRIDE=${PLATFORM} CI_CACHE=NimBinaries V=1 update
|
||||
mingw32-make -j2 ARCH_OVERRIDE=${PLATFORM} CI_CACHE=NimBinaries update
|
||||
mingw32-make -j2 ARCH_OVERRIDE=${PLATFORM} fetch-dlls
|
||||
mingw32-make -j2 ARCH_OVERRIDE=${PLATFORM} P2PD_CACHE=p2pdCache
|
||||
mingw32-make -j2 ARCH_OVERRIDE=${PLATFORM} P2PD_CACHE=p2pdCache NIMFLAGS="-d:NETWORK_TYPE=libp2p -d:testnet_servers_image"
|
||||
|
|
7
nim.cfg
7
nim.cfg
|
@ -14,9 +14,6 @@
|
|||
@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"
|
||||
@else
|
||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65782
|
||||
--passC:"-fno-asynchronous-unwind-tables"
|
||||
@end
|
||||
|
||||
# The dynamic Chronicles output currently prevents us from using colors on Windows
|
||||
|
@ -33,6 +30,10 @@
|
|||
--passC:"-msse3"
|
||||
@else:
|
||||
--passC:"-march=native"
|
||||
@if windows:
|
||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65782
|
||||
--passC:"-fno-asynchronous-unwind-tables"
|
||||
@end
|
||||
@end
|
||||
|
||||
--threads:on
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit acfe8c4bfe603a40e191c950aef1bfe149dbc623
|
||||
Subproject commit 2c4faa5372d2d8b0c2d16710fe5f93beab1c86af
|
Loading…
Reference in New Issue