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 381296d01ab..9d851ceb2db 100644 --- a/lldb/lit/helper/toolchain.py +++ b/lldb/lit/helper/toolchain.py @@ -96,7 +96,7 @@ def use_support_substitutions(config): sdk_path = lit.util.to_string(out) llvm_config.lit_config.note('using SDKROOT: %r' % sdk_path) flags = ['-isysroot', sdk_path] - elif platform.system() in ['OpenBSD', 'Linux']: + elif platform.system() in ['NetBSD', 'OpenBSD', 'Linux']: flags = ['-pthread'] |