Skip to content

Commit fc04bf9

Browse files
authored
Merge pull request #3462 from apple/🍒/FBI/09b95b9dc9af
[lldb] Always set the minimum OS version in the Darwin builder
2 parents 08067b9 + 246fd90 commit fc04bf9

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def getArchCFlags(self, arch):
105105
version_min = ""
106106
if env == "simulator":
107107
version_min = "-m{}-simulator-version-min={}".format(os, version)
108-
elif os == "macosx":
108+
else:
109109
version_min = "-m{}-version-min={}".format(os, version)
110110

111111
return "ARCH_CFLAGS=\"-target {} {}\"".format(triple, version_min)

0 commit comments

Comments
 (0)