mirror of
https://github.com/platformio/platformio-core.git
synced 2025-07-30 10:07:14 +02:00
Add "-pthread" to the LINKFLAGS
This commit is contained in:
@ -103,7 +103,7 @@ class GoogletestTestRunner(TestRunnerBase):
|
|||||||
return
|
return
|
||||||
env.Append(CXXFLAGS=["-std=c++11"])
|
env.Append(CXXFLAGS=["-std=c++11"])
|
||||||
if not IS_WINDOWS:
|
if not IS_WINDOWS:
|
||||||
env.Append(CCFLAGS=["-pthread"])
|
env.Append(CCFLAGS=["-pthread"], LINKFLAGS=["-pthread"])
|
||||||
|
|
||||||
def on_testing_line_output(self, line):
|
def on_testing_line_output(self, line):
|
||||||
if self.options.verbose:
|
if self.options.verbose:
|
||||||
|
Reference in New Issue
Block a user