Add "-pthread" to the LINKFLAGS

This commit is contained in:
Ivan Kravets
2022-05-10 17:23:03 +03:00
parent 2c99607d3d
commit e75bf27b5f

View File

@ -103,7 +103,7 @@ class GoogletestTestRunner(TestRunnerBase):
return
env.Append(CXXFLAGS=["-std=c++11"])
if not IS_WINDOWS:
env.Append(CCFLAGS=["-pthread"])
env.Append(CCFLAGS=["-pthread"], LINKFLAGS=["-pthread"])
def on_testing_line_output(self, line):
if self.options.verbose: