diff options
Diffstat (limited to 'lldb/test/lldbtest.py')
-rw-r--r-- | lldb/test/lldbtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/test/lldbtest.py b/lldb/test/lldbtest.py index 1f5a2940eed..a67e64ce278 100644 --- a/lldb/test/lldbtest.py +++ b/lldb/test/lldbtest.py @@ -1737,7 +1737,7 @@ class Base(unittest2.TestCase): return self.lib_dir def getLibcPlusPlusLibs(self): - if sys.platform.startswith('freebsd'): + if sys.platform.startswith('freebsd') or sys.platform.startswith('linux'): return ['libc++.so.1'] else: return ['libc++.1.dylib','libc++abi.dylib'] |