From 4f32d11e1b975cd37050995c1ec89ebb94a24eaa Mon Sep 17 00:00:00 2001 From: Alexey Stukalov Date: Wed, 27 Dec 2017 23:43:47 +0100 Subject: add Compiler.thread_flags() stub fixes #2834 --- mesonbuild/compilers/compilers.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/mesonbuild/compilers/compilers.py b/mesonbuild/compilers/compilers.py index 9728918..b14074b 100644 --- a/mesonbuild/compilers/compilers.py +++ b/mesonbuild/compilers/compilers.py @@ -871,6 +871,9 @@ class Compiler: args += ['-Wl,-rpath-link,' + lpaths] return args + def thread_flags(self, env): + return [] + GCC_STANDARD = 0 GCC_OSX = 1 -- cgit v1.1