[Lldb-commits] [PATCH] D15374: Add NetBSD support in the buildDriver and buildLibrary routines

Ed Maste via lldb-commits lldb-commits at lists.llvm.org
Wed Dec 9 06:45:10 PST 2015


emaste requested changes to this revision.
This revision now requires changes to proceed.

================
Comment at: packages/Python/lldbsuite/test/lldbtest.py:2100
@@ -2099,3 +2099,3 @@
                 }
-        elif sys.platform.startswith('freebsd') or sys.platform.startswith("linux") or os.environ.get('LLDB_BUILD_TYPE') == 'Makefile':
+        elif sys.platform.rstrip('123456789') in ('freebsd', 'linux', 'netbsd') or os.environ.get('LLDB_BUILD_TYPE') == 'Makefile':
             d = {'CXX_SOURCES' : sources,
----------------
joerg wrote:
> No zero?
Oh, indeed. Zero is necessary.


Repository:
  rL LLVM

http://reviews.llvm.org/D15374





More information about the lldb-commits mailing list