[Lldb-commits] [lldb] 09b95b9 - [lldb] Always set the minimum OS version in the Darwin builder

Jonas Devlieghere via lldb-commits lldb-commits at lists.llvm.org
Thu Oct 21 17:03:12 PDT 2021


Author: Jonas Devlieghere
Date: 2021-10-21T17:03:06-07:00
New Revision: 09b95b9dc9afb0c12e7d10faea17ed0cb6920b9f

URL: https://github.com/llvm/llvm-project/commit/09b95b9dc9afb0c12e7d10faea17ed0cb6920b9f
DIFF: https://github.com/llvm/llvm-project/commit/09b95b9dc9afb0c12e7d10faea17ed0cb6920b9f.diff

LOG: [lldb] Always set the minimum OS version in the Darwin builder

Added: 
    

Modified: 
    lldb/packages/Python/lldbsuite/test/builders/darwin.py

Removed: 
    


################################################################################
diff  --git a/lldb/packages/Python/lldbsuite/test/builders/darwin.py b/lldb/packages/Python/lldbsuite/test/builders/darwin.py
index 7718fd4d91f4e..360533f7ad6ba 100644
--- a/lldb/packages/Python/lldbsuite/test/builders/darwin.py
+++ b/lldb/packages/Python/lldbsuite/test/builders/darwin.py
@@ -96,7 +96,7 @@ def getArchCFlags(self, arch):
         version_min = ""
         if env == "simulator":
             version_min = "-m{}-simulator-version-min={}".format(os, version)
-        elif os == "macosx":
+        else:
             version_min = "-m{}-version-min={}".format(os, version)
 
         return ["ARCH_CFLAGS=-target {} {}".format(triple, version_min)]


        


More information about the lldb-commits mailing list