1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

v.builder: change the default stack size for apps produced by MSVC to 16MB

This commit is contained in:
Delyan Angelov 2021-12-19 18:37:51 +02:00
parent cd0b581445
commit 840a92c14e
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -280,11 +280,12 @@ pub fn (mut v Builder) cc_msvc() {
a << env_cflags
}
// Default arguments
// volatile:ms enables atomic volatile (gcc _Atomic)
// -w: no warnings
// 2 unicode defines
// /Fo sets the object file name - needed so we can clean up after ourselves properly
a << ['-w', '/we4013', '/volatile:ms', '/Fo"$out_name_obj"']
// `-w` no warnings
// `/we4013` 2 unicode defines, see https://docs.microsoft.com/en-us/cpp/error-messages/compiler-warnings/compiler-warning-level-3-c4013?redirectedfrom=MSDN&view=msvc-170
// `/volatile:ms` enables atomic volatile (gcc _Atomic)
// `/Fo` sets the object file name - needed so we can clean up after ourselves properly
// `/F 16777216` changes the stack size to 16MB, see https://docs.microsoft.com/en-us/cpp/build/reference/f-set-stack-size?view=msvc-170
a << ['-w', '/we4013', '/volatile:ms', '/Fo"$out_name_obj"', '/F 16777216']
if v.pref.is_prod {
a << '/O2'
}