From 45bbc12208f9dd9b35a19edc556f3d37a18aeda7 Mon Sep 17 00:00:00 2001 From: Celtic Minstrel Date: Sun, 29 Dec 2019 12:25:44 -0500 Subject: [PATCH] Linux builds require linking to pthread --- SConstruct | 1 + 1 file changed, 1 insertion(+) diff --git a/SConstruct b/SConstruct index 9a6ba414..4f993d19 100644 --- a/SConstruct +++ b/SConstruct @@ -329,6 +329,7 @@ elif platform == "posix": env.Append(LIBS=Split(""" GL X11 + pthread """)) Export("env platform")