diff options
-rw-r--r-- | lldb/lit/helper/toolchain.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/lit/helper/toolchain.py b/lldb/lit/helper/toolchain.py index ce22c25180e..c0ea7eda1df 100644 --- a/lldb/lit/helper/toolchain.py +++ b/lldb/lit/helper/toolchain.py @@ -78,7 +78,7 @@ def use_support_substitutions(config): sdk_path = lit.util.to_string(out) lit_config.note('using SDKROOT: %r' % sdk_path) flags = ['-isysroot', sdk_path] - elif platform.system() in ['OpenBSD']: + elif platform.system() in ['OpenBSD', 'Linux']: flags = ['-pthread'] |