Skip to content

Commit 2b5857b

Browse files
authored
Mark Xcode 13.2.1 as supported (swiftlang#40778)
Currently, when trying to build with the latest stable Xcode, you get this error: ``` using unsupported Xcode version: Xcode 13.2.1 Build version 13C100 ``` Xcode 13.2.1 can successfully build the toolchain and should be marked as supported.
1 parent e96215c commit 2b5857b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

utils/build-script

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@ _SUPPORTED_XCODE_BUILDS = [
5959
("13.0 beta 4", "13A5201i"),
6060
("13.0", "13A233"),
6161
("13.1 RC 1", "13A1030d"),
62-
("13.2 beta", "13C5066c")
62+
("13.2 beta", "13C5066c"),
63+
("13.2.1", "13C100")
6364
]
6465

6566
# -----------------------------------------------------------------------------

0 commit comments

Comments
 (0)