Skip to content

Commit 09b95b9

Browse files
committed
[lldb] Always set the minimum OS version in the Darwin builder
1 parent 05c21f5 commit 09b95b9

File tree

1 file changed

+1
-1
lines changed
  • lldb/packages/Python/lldbsuite/test/builders

1 file changed

+1
-1
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def getArchCFlags(self, arch):
9696
version_min = ""
9797
if env == "simulator":
9898
version_min = "-m{}-simulator-version-min={}".format(os, version)
99-
elif os == "macosx":
99+
else:
100100
version_min = "-m{}-version-min={}".format(os, version)
101101

102102
return ["ARCH_CFLAGS=-target {} {}".format(triple, version_min)]

0 commit comments

Comments
 (0)