wscript: added parallel builds compiler flag for MSVC

This commit is contained in:
SNMetamorph 2022-06-30 03:34:28 +04:00 committed by a1batross
parent 64eb0a694d
commit 3ec9977212
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ LINKFLAGS = {
CFLAGS = {
'common': {
# disable thread-safe local static initialization for C++11 code, as it cause crashes on Windows XP
'msvc': ['/D_USING_V110_SDK71_', '/FS', '/Zc:threadSafeInit-', '/MT'],
'msvc': ['/D_USING_V110_SDK71_', '/FS', '/Zc:threadSafeInit-', '/MT', '/MP'],
'clang': ['-g', '-gdwarf-2', '-fvisibility=hidden', '-fno-threadsafe-statics'],
'gcc': ['-g', '-fvisibility=hidden'],
'owcc': ['-fno-short-enum', '-ffloat-store', '-g3']