[Lldb-commits] [lldb] r343810 - The Python 3 part of the script was missed when adding OpenBSD support.

Brad Smith via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 4 13:34:59 PDT 2018


Author: brad
Date: Thu Oct  4 13:34:58 2018
New Revision: 343810

URL: http://llvm.org/viewvc/llvm-project?rev=343810&view=rev
Log:
The Python 3 part of the script was missed when adding OpenBSD support.

Modified:
    lldb/trunk/scripts/utilsOsType.py

Modified: lldb/trunk/scripts/utilsOsType.py
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/scripts/utilsOsType.py?rev=343810&r1=343809&r2=343810&view=diff
==============================================================================
--- lldb/trunk/scripts/utilsOsType.py (original)
+++ lldb/trunk/scripts/utilsOsType.py Thu Oct  4 13:34:58 2018
@@ -35,8 +35,9 @@ if sys.version_info.major >= 3:
         FreeBSD = 2
         Linux = 3
         NetBSD = 4
-        Windows = 5
-        kFreeBSD = 6
+        OpenBSD = 5
+        Windows = 6
+        kFreeBSD = 7
 else:
     class EnumOsType(object):
         values = ["Unknown",




More information about the lldb-commits mailing list