scons: For MinGW use -posix flag.

Signed-off-by: Jose Fonseca <jfonseca@vmware.com>
This commit is contained in:
Michel Zou 2019-05-24 12:32:01 +02:00 committed by Jose Fonseca
parent 78fb5594be
commit 88eb2a1f7e
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ def generate(env):
if env['platform'] == 'windows' and env['crosscompile']:
# LLVM 5.0 requires MinGW w/ pthreads due to use of std::thread and friends.
assert env['gcc']
env['CXX'] = env['CXX'] + '-posix'
env.AppendUnique(CXXFLAGS = ['-posix'])
elif llvm_version >= distutils.version.LooseVersion('4.0'):
env.Prepend(LIBS = [
'LLVMX86Disassembler', 'LLVMX86AsmParser',