From b2c5741deddbe5b428242f367f90395faa503234 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 11 May 2018 17:19:16 -0700 Subject: [PATCH] Link tests against libpthread on linux --- tests.gyp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests.gyp b/tests.gyp index ab0de485..80e8d618 100644 --- a/tests.gyp +++ b/tests.gyp @@ -101,7 +101,7 @@ 'cflags_cc': ['-std=c++14'], 'conditions': [ ['OS=="linux"', { - 'libraries': ['-ldl'], + 'libraries': ['-ldl', '-lpthread'], }] ], 'xcode_settings': {