Movatterモバイル変換


[0]ホーム

URL:


Jump to content
WikipediaThe Free Encyclopedia
Search

Xcode

From Wikipedia, the free encyclopedia
IDE including tools for developing software for Apple platforms

Xcode
Developer(s)Apple Inc.
Initial releaseOctober 23, 2003; 21 years ago (2003-10-23)[1]
Stable release16.2 (16C5032a)[2] (December 11, 2024; 3 months ago (2024-12-11)) [±]
Preview release16.3 beta 2 (16E5121h)[3] (March 5, 2025; 10 days ago (2025-03-05)) [±]
Operating systemmacOS
TypeIntegrated development environment (IDE)
LicenseProprietary withopen-source components
Websitedeveloper.apple.com/xcode/

Xcode isApple'sintegrated development environment (IDE) formacOS, used to develop software for macOS,iOS,iPadOS,watchOS,tvOS, andvisionOS. It was initially released in late 2003; the latest stable release is version 16, released on September 16, 2024, and is available free of charge via theMac App Store and theApple Developer website.[4] Registered developers can also download preview releases and prior versions of the suite through the Apple Developer website.[5] Xcode includes command-line tools that enableUNIX-style development via theTerminal app in macOS.[6] They can also be downloaded and installed without theGUI.

Before Xcode, Apple offered developersProject Builder andInterface Builder to develop Mac OS X applications.

Major features

[edit]

Xcode supportssource code for theprogramming languages:Swift,C++,Objective-C,Objective-C++,Java,AppleScript,Python,Ruby,ResEdit (Rez), andC, with a variety of programming models, including but not limited toCocoa,Carbon, and Java. Third parties have added support forGNU Pascal,[7]Free Pascal,[8]Ada,[9]C#,[10]Go,[11]Perl,[12] andD.[13]

Xcode can buildfat binary (universal binary) files containing code for multiple architectures with theMach-O executable format. These helped ease the transitions from32-bitPowerPC to64-bit PowerPC, from PowerPC toIntelx86, from 32-bit to 64-bit Intel, and most recently from Intel x86 toApple silicon by allowing developers to distribute a single application to users and letting the operating system automatically choose the appropriate architecture at runtime. Using theiOS SDK, tvOS SDK, and watchOS SDK, Xcode can also be used to compile and debug applications foriOS,iPadOS,tvOS, andwatchOS.

Xcode includes the GUI toolInstruments, which runs atop a dynamic tracing framework,DTrace, created bySun Microsystems and released as part ofOpenSolaris.

Xcode also integrates built-in support forsource code management using theGitversion control system and protocol, allowing the user to create andclone Gitrepositories (which can be hosted on source code repository hosting sites such asGitHub,Bitbucket, andPerforce, or self-hosted using open-source software such asGitLab), and tocommit,push, andpull changes, all from within Xcode, automating tasks that would traditionally be performed by using Git from thecommand line.

Composition

[edit]

The main application of the suite is theintegrated development environment (IDE), also named Xcode. The Xcode suite includes most of Apple's developer documentation, and built-inInterface Builder, an application used to constructgraphical user interfaces.Up to Xcode 4.1, the Xcode suite included a modified version of theGNU Compiler Collection. In Xcode 3.1 up to Xcode 4.6.3, it included the LLVM-GCC compiler, with front ends from theGNU Compiler Collection and a code generator based onLLVM.[14] In Xcode 3.2 and later, it included theClang C/C++/Objective-C compiler, with newly-written front ends and a code generator based on LLVM, and the Clangstatic analyzer.[15] Starting with Xcode 4.2, the Clang compiler became the default compiler,[16] Starting with Xcode 5.0, Clang was the only compiler provided.

Up to Xcode 4.6.3, the Xcode suite used theGNU Debugger (GDB) as theback-end for the IDE'sdebugger. Starting with Xcode 4.3, theLLDB debugger was also provided; starting with Xcode 4.5 LLDB replaced GDB as the default back-end for the IDE's debugger.[17] Starting with Xcode 5.0, GDB was no longer supplied.[18]

Playgrounds

[edit]

The Playgrounds feature of Xcode provides an environment for rapid experimentation and development in theSwift programming language. The original version of the feature was announced and released byApple Inc on June 2, 2014, duringWWDC 2014.[19][20]

Playgrounds provide a testing ground that renders developer code in real time. They have the capability of evaluating and displaying the results of single expressions as they are coded (in line or on a side bar), providing rapid feedback to the programmer. This type of development environment, known as aread-eval-print loop (or REPL) is useful for learning, experimenting and fast prototyping.[21][22][23] Playgrounds was used by Apple to publishSwift tutorials and guided tours where the REPL advantages are noticeable.[24][25]

The Playgrounds feature was developed by the Developer Tools department at Apple. According toChris Lattner, the inventor ofSwift Programming Language and Senior Director and Architect at the Developer Tools Department, Playgrounds was "heavily influenced by Bret Victor's ideas, byLight Table and by many other interactive systems".[26] Playgrounds was announced byApple Inc. on June 2, 2014, duringWWDC 2014 as part ofXcode 6 and released in September.

In September 2016, theSwift Playgrounds application for iPad (also available onmacOS starting in February 2020) was released, incorporating these ideas into an educational tool. Xcode's Playgrounds feature continued development, with a new step-by-step execution feature introduced in Xcode 10 atWWDC 2018.[27]

Removed features

[edit]

Formerly, Xcode supported distributing a product build process over multiple systems. One technology involved was namedShared Workgroup Build, which used theBonjour protocol to automatically discover systems providing compiler services, and a modified version of the free software productdistcc to facilitate the distribution of workloads. Earlier versions of Xcode provided a system namedDedicated Network Builds. These features are absent in the supported versions of Xcode.

Xcode also includes Apple'sWebObjects tools and frameworks for building Java web applications and web services (formerly sold as a separate product). As of Xcode 3.0, Apple dropped[28] WebObjects development inside Xcode; WOLips[29] should be used instead. Xcode 3 still includes the WebObjects frameworks.

Version history

[edit]

1.x series

[edit]

Xcode 1.0 was released in fall 2003. Xcode 1.0 was based onProject Builder, but had an updateduser interface (UI), ZeroLink, Fix & Continue, distributed build support, and Code Sense indexing.

The next significant release, Xcode 1.5, had better code completion and an improved debugger.

2.x series

[edit]

Xcode 2.0 was released withMac OS X v10.4 "Tiger". It included theQuartz Composer visual programming language, better Code Sense indexing for Java, andAnt support. It also included the Apple Reference Library tool, which allows searching and reading online documentation from Apple's website and documentation installed on a local computer.

Xcode 2.1 could createuniversal binary files. It supported sharedprecompiled headers, unit testing targets, conditional breakpoints, and watchpoints. It also had better dependency analysis.

The final version of Xcode forMac OS X v10.4 was 2.5.

3.x series

[edit]

Xcode 3.0 was released withMac OS X v10.5 "Leopard". Notable changes since 2.1 include[30] theDTrace debugging tool (now namedInstruments), refactoring support, context-sensitive documentation, andObjective-C 2.0 withgarbage collection. It also supports Project Snapshots, which provide a basic form of version control; Message Bubbles, which show build errors debug values alongside code; and building four-architecture fat binaries (32 and 64-bit Intel and PowerPC).

Xcode 3.1 was an update release of the developer tools for Mac OS X, and was the same version included with the iPhone SDK. It could target non-Mac OS X platforms, including iPhone OS 2.0. It included the GCC 4.2 andLLVM GCC 4.2 compilers. Another new feature since Xcode 3.0 is that Xcode's SCM support now includes Subversion 1.5.

Xcode 3.2 was released withMac OS X v10.6 "Snow Leopard" and installs on no earlier version of OS X. It supportsstatic program analysis, among other features. It also drops official support for targeting versions earlier than iPhone OS 3.0. But it is still possible to target older versions, and the simulator supports iPhone OS 2.0 through 3.1. Also,Java support is "exiled" in 3.2 to the organizer.[31]

Xcode 3.2.6 is the last version that can be downloaded for free for users of Mac OS X Snow Leopard (though it’s not the last version that supports Snow Leopard; 4.2 is). Downloading Xcode 3.2.6 requires a free registration at Apple's developer site.

4.x series

[edit]

In June 2010, at theApple Worldwide Developers Conference version 4 of Xcode was announced during the Developer Tools State of the Union address. Version 4 of the developer tools consolidates the Xcode editing tools and Interface Builder into one application, among other enhancements.[32][33] Apple released the final version of Xcode 4.0 on March 9, 2011. The software was made available for free to all registered members of the $99 per year Mac Developer program and the $99 per year iOS Developer program. It was also sold for $4.99 to non-members on theMac App Store (no longer available). Xcode 4.0 drops support for many older systems, including all PowerPC development andsoftware development kits (SDKs) for Mac OS X 10.4 and 10.5, and all iOS SDKs older than 4.3. The deployment target can still be set to produce binaries for those older platforms, but for Mac OS platforms, one is then limited to creatingx86 andx86-64 binaries. Later, Xcode was free to the general public. Before version 4.1, Xcode cost $4.99.[34]

Xcode 4.1 was made available for free on July 20, 2011 (the day ofMac OS X Lion's release) to all users of Mac OS X Lion on the Mac App Store. On August 29, 2011, Xcode 4.1 was made available for Mac OS X Snow Leopard for members of the paid Mac or iOS developer programs.[35] Xcode 4.1 was the last version to includeGNU Compiler Collection (GCC) instead of onlyLLVM GCC orClang.

On October 12, 2011, Xcode 4.2 was released concurrently with the release ofiOS 5.0, and it included many more and improved features, such as storyboarding andautomatic reference counting (ARC).[16] Xcode 4.2 is the last version to supportMac OS X 10.6 "Snow Leopard", but is available only to registered developers with paid accounts; without a paid account, 3.2.6 is the latest download that appears for Snow Leopard.[36]

Xcode 4.3, released on February 16, 2012, is distributed as one application bundle, Xcode.app, installed from the Mac App Store. Xcode 4.3 reorganizes the Xcode menu to include development tools.[37] Xcode 4.3.1 was released on March 7, 2012 to add support for iOS 5.1.[38] Xcode 4.3.2 was released on March 22, 2012 with enhancements to the iOS Simulator and a suggested move to the LLDB debugger versus the GDB debugger (which appear to be undocumented changes).[citation needed] Xcode 4.3.3, released in May 2012, featured an updated SDK forMac OS X 10.7.4 "Lion" and a few bug fixes.[39]

Xcode 4.4 was released on July 25, 2012.[40]It runs on bothMac OS X Lion (10.7) andOS X Mountain Lion (10.8) and is the first version of Xcode to contain theOS X 10.8 "Mountain Lion" SDK. Xcode 4.4 includes support for automatic synthesizing of declared properties, newObjective-C features such as literal syntax and subscripting, improved localization, and more.[41] On August 7, 2012, Xcode 4.4.1 was released with a few bug fixes.

On September 19, 2012, iOS 6 and Xcode 4.5 were released. Xcode added support for iOS 6 and the 4-inchRetina Display oniPhone 5 andiPod Touch 5th generation. It also brought some newObjective-C features to iOS, simplified localization, and added auto-layout support for iOS.[17] On October 3, 2012, Xcode 4.5.1 was released with bug fixes and stability improvements.[4] Less than a month later, Xcode 4.5.2 was released, with support foriPad Mini andiPad with Retina Display, and bug fixes and stability improvements.

On January 28, 2013,iOS 6.1 and Xcode 4.6 were released.

5.x series

[edit]

On June 10, 2013, at theApple Worldwide Developers Conference, version 5 of Xcode was announced.[42]On September 18, 2013, Xcode 5.0 was released. It shipped with iOS 7 and OS X 10.8 Mountain Lion SDKs. However, support for OS X 10.9 Mavericks was only available in beta versions. Xcode 5.0 also added a version ofClang generating 64-bit ARM code for iOS 7. Apple removed support for building garbage collected Cocoa binaries in Xcode 5.1.[43]

6.x series

[edit]

On June 2, 2014, at the Worldwide Developers Conference, Apple announced version 6 of Xcode. One of the most notable features was support forSwift, an all-new programming language developed by Apple. Xcode 6 also included features likePlaygrounds and live debugging tools.[44] On September 17, 2014, at the same time,iOS 8 and Xcode 6 were released. Xcode could be downloaded on theMac App Store.

7.x series

[edit]

On June 8, 2015, at theApple Worldwide Developers Conference, Xcode version 7 was announced. It introduced support for Swift 2, and Metal forOS X, and added support for deploying on iOS devices without an Apple Developer account.[45] Xcode 7 was released on September 16, 2015.

8.x series

[edit]

On June 13, 2016, at theApple Worldwide Developers Conference, Xcode version 8 was announced; a beta version was released the same day. It introduced support for Swift 3.[46] Xcode 8 was released on September 13, 2016.

9.x series

[edit]

On June 5, 2017, at theApple Worldwide Developers Conference, Xcode version 9 was announced; a beta version was released the same day. It introduced support for Swift 4 and Metal 2. It also introduced remote debugging oniOS andtvOS devices wirelessly, through Wi-Fi.[47]

Xcode 9 was publicly released on September 19, 2017.[48]

10.x series

[edit]

On June 4, 2018, at theApple Worldwide Developers Conference, Xcode version 10 was announced; a beta version was released the same day. Xcode 10 introduced support for the Dark Mode announced formacOS Mojave, the collaboration platformsBitbucket andGitLab (in addition to already supportedGitHub), training machine learning models from playgrounds, and the new features inSwift 4.2 andMetal 2.1, as well as improvements to the editor and the project build system.[49] Xcode 10 also dropped support for building 32-bitmacOS apps[50] and no longer supports Subversion integration.[51]

Xcode 10 was publicly released on September 17, 2018.[52]

11.x series

[edit]

On June 3, 2019, at theApple Worldwide Developers Conference, Xcode version 11 was announced; a beta version was released the same day. Xcode 11 introduced support for the new features inSwift 5.1, as well as the new SwiftUI framework (although the interactive UI tools are available only when running undermacOS 10.15).[53] It also supports building iPad applications that run under macOS; includes integrated support for the Swift Package Manager; and contains further improvements to the editor, including a "minimap" that gives an overview of a source code file with quick navigation.[54] Xcode 11 requires macOS 10.14 or later[53] and Xcode 11.4 requires 10.15 or later.[55]

Xcode 11 was publicly released on September 20, 2019.

12.x series

[edit]

On June 22, 2020, at theApple Worldwide Developers Conference, Xcode version 12 was announced; a beta version was released the same day. Xcode 12 introduced support forSwift 5.3 and requires macOS 10.15.4 or later. Xcode 12 dropped building apps for iOS 8 and the lowest version of iOS supported by Xcode 12 built apps is iOS 9. Xcode 12.1 also dropped support for building apps for Mac OS X 10.6 Snow Leopard. The minimum version of macOS supported by Xcode 12.1 built apps is OS X 10.9 Mavericks.[56]

Xcode 12 was publicly released on September 16, 2020.

13.x series

[edit]

On June 7, 2021, at theApple Worldwide Developers Conference, Xcode version 13 was announced; a beta version was released the same day. The new version introduced support forSwift 5.5 and requires macOS 11.3 or later. Xcode 13 contains SDKs foriOS / iPadOS 15,macOS 12,watchOS 8, andtvOS 15. Xcode 13’s major features include the newconcurrency model in Swift projects,[57] improved support forversion control providers (such asGitHub), including the ability to browse, view, and comment onpull requests right in the app interface, and support for Xcode Cloud, Apple’s newly-launchedmobile CI/CD service (it also has a web version).

Xcode 13 was publicly released on September 20, 2021.

14.x series

[edit]

On June 6, 2022, at theApple Worldwide Developers Conference, Xcode version 14 was announced; a beta version was released the same day. Xcode 14 dropped support for building 32-bitiOS apps.[58] Xcode 14 dropped support for building apps for iOS 9 and 10 (these versions of iOS supported 32-bit iOS apps) and the minimum version of iOS supported by Xcode 14 built apps is iOS 11. Xcode 14 also dropped building apps for macOS 10.12 Sierra. The minimum version of macOS supported by Xcode 14 built apps is macOS 10.13 High Sierra.[56]

Xcode 14 was publicly released on September 12, 2022.

15.x series

[edit]

On June 5, 2023, at theApple Worldwide Developers Conference, Xcode version 15 was announced; a beta version was released the same day. Xcode 15 dropped support for building apps for iOS 11 and the minimum version of iOS supported by Xcode 15 built apps is iOS 12.[56]

Xcode 15 was publicly released on September 18, 2023.

16.x series

[edit]

On June 10, 2024, at theApple Worldwide Developers Conference, Xcode version 16 was announced; a beta version was released the same day.[56] Xcode 16 introduced predictive code completion on Apple silicon Macs, along with the Swift Testing framework.[59]

Xcode 16 was publicly released on September 16, 2024.

Version comparison table

[edit]
DiscontinuedCurrent releaseBeta

Xcode 1.0 - Xcode 2.x (before iOS support)

[edit]
Version history
VersionBuildRelease dateRuns on versions ofMac OS XMac OS X SDK(s)
1.0September 28, 2003Mac OS X Panther (10.3.x)Mac OS X Cheetah (10.0.x),Mac OS X Puma (10.1.x),Mac OS X Jaguar (10.2.x), andMac OS X Panther (10.3.x)
1.1December 19, 2003
1.2April 22, 2004
1.5August 4, 2004
2.0April 29, 2005Mac OS X Tiger (10.4.x)Mac OS X Jaguar (10.2.x),Mac OS X Panther (10.3.x), andMac OS X Tiger (10.4.x)
2.1June 6, 2005
2.2November 10, 2005
2.2.1January 13, 2006
2.3May 23, 2006
2.4August 17, 2006
2.4.1October 31, 2006
2.5October 30, 2007Mac OS X Tiger (10.4.x) andMac OS X Leopard (10.5.x)Mac OS X Jaguar (10.2.x),Mac OS X Panther (10.3.x),Mac OS X Tiger (10.4.x) andMac OS X Leopard (10.5.x)
VersionBuildRelease dateRuns on versions of Mac OS XMac OS X SDK(s)

Xcode 3.0 - Xcode 4.x

[edit]
Version history
VersionBuildRelease dateminOS X to runOS X SDK(s)iOS SDK(s) includedMin iOS Deployment TargetiOS arm supportedadditional iOS Simulators
3.0October 26, 200710.5.xMac OS X Panther (10.3.x),Mac OS X Tiger (10.4.x), andMac OS X Leopard (10.5.x)iOS 2.x + each down toiOS 2.0iOS 2.0armv6-
3.1August 2, 2008
3.1.1October 17, 2008
3.1.2November 23, 2008
3.1.3June 17, 200910.5.7[60]iOS 3.1.3 (7E18) or lower[60] + each down toiOS 2.0armv6 + foriOS 3.x:armv7
3.1.41203July 15, 2009
3.2August 28, 200910.6.0Mac OS X Tiger (10.4.x),Mac OS X Leopard (10.5.x), andMac OS X Snow Leopard (10.6.x)
3.2.1October 9, 2009
3.2.21650April 3, 201010.6.2[61]iOS 3.2 (7B367) + each down to iOS 3.0iOS 3.0armv6, armv7
3.2.3June 22, 201010.6.4[62][63][64]iOS 4.0.x[65] +iOS 3.2
3.2.4September 8, 2010iOS 4.1 +iOS 3.2iOS 4.0.2 (8A400)
3.2.51760October 14, 2010iOS 4.2 (8C134)iOS 4.1 (8B117) + iOS 4.0.2 (8A400) + iOS 3.2 (7W367a)
3.2.61761February 14, 201110.6.6[66][67]iOS 4.3 (8F190)iOS 4.2 (8C134) + iOS 4.1 (8B117) + iOS 4.0.2 (8A400) + iOS 3.2 (7W367a)
4.04A304aMarch 14, 2011Mac OS X Snow Leopard (10.6.x)
4.0.14A1006March 25, 2011
4.0.24A2002aApril 14, 2011iOS 4.3.2 (8H7)
4.14B110 (10.7) 4B110f (10.6)July 20, 2011[68]10.6.7[69][70] and 10.7Mac OS X Snow Leopard (10.6.x) andMac OS X Lion (10.7.x)-
4.1.1August 4, 2011[71]
4.24D199 (10.7) 4C199 (10.6)October 12, 2011iOS 5.0 (9A334)downloadable: iOS 4.3.2 (8H7)[72]
4.2.14D502November 18, 201110.7[73][74]
4.34E109February 16, 201210.7.3[75][76]
4.3.14E1019March 7, 2012iOS 5.1 (9B176)downloadable: iOS 5.0 + only for OS X 10.7:[77] iOS 4.3
4.3.24E2002March 22, 2012
4.3.34E3002May 9, 2012
4.4July 25, 201210.7.4[78][79]Mac OS X Lion (10.7.x) andOS X Mountain Lion (10.8.x)
4.4.14F1003August 7, 2012
4.5September 19, 2012iOS 6.0 (10A403)iOS 4.3[80]armv7, armv7sdownloadable: iOS 5.1 + iOS 5.0 + only for OS X 10.7: iOS 4.3
4.5.1October 3, 2012
4.5.24G2008November 1, 2012
4.64H127Feb 20, 2013iOS 6.1 (10B141)downloadable: iOS 6.0 + iOS 5.1 + iOS 5.0 + only for OS X 10.7: iOS 4.3
4.6.14H512March 14, 2013
4.6.24H1003April 15, 2013
4.6.34H1503June 14, 2013
VersionBuildRelease dateminOS X to runOS X SDK(s)iOS SDK(s) includedMin iOS Deployment TargetiOS arm supportedadditional iOS Simulators

Xcode 5.0 - 6.x (since arm64 support)

[edit]
Version history
VersionBuildRelease dateminOS X to runOS X SDK(s)iOS SDK(s) includedMin iOS Deployment TargetiOS arm supporteddownloadable iOS Simulators
5.05A1413September 18, 201310.8.4[81][82]OS X v10.8iOS 7.0 (11A465)iOS 4.3 oriOS 6.0 (for arch witharm64)[83]armv7, armv7s, arm64iOS 6.1 + iOS 6.0 + only for OS X 10.8:[84] iOS 5.1 + iOS 5.0
5.0.15A2053October 22, 2013OS X v10.8 +OS X v10.9iOS 7.0.3 (11B508)iOS 4.3 oriOS 5.1.1 (for arch witharm64)[85]
5.0.25A3005November 12, 2013
5.15B130aMarch 10, 2014iOS 7.1 (11D167)iOS 7.0 + iOS 6.1[86][87]
5.1.15B1008April 10, 2014iOS 6.1
6.0.16A317September 17, 201410.9.4OS X v10.9iOS 8.0 (12A365)Default:armv7,arm64
Manually:[88] armv7s
iOS 7.1 + only for OS X 10.9[89] iOS 7.0
6.16A1052c 6A1052dOctober 16, 2014[90] October 20, 2014[91]OS X v10.9 +OS X v10.10iOS 8.1 (12B411)
6.1.16A2008aDecember 2, 2014
6.26C131eMarch 9, 2015iOS 8.2 (12D508)iOS 8.1 + iOS 7.1
6.36D570April 8, 201510.10OS X v10.9 +OS X v10.10iOS 8.3 (12F69)iOS 8.2 + iOS 8.1 + iOS 7.1
6.3.16D1002April 21, 2015
6.3.26D2105May 18, 2015
6.46E35bJune 30, 2015iOS 8.4 (12H141)iOS 8.3 + iOS 8.2 + iOS 8.1 + iOS 7.1
VersionBuildRelease dateminOS X to run[92]OS X SDK(s)iOS SDK(s) includedMin iOS Deployment TargetiOS arm supporteddownloadable iOS Simulators

Xcode 7.0 - 10.x (since Free On-Device Development)

[edit]
Version history
VersionBuildRelease dateminmacOS to run[93]macOS SDK(s)[94]iOS SDK included[95]watchOS SDK included[96]tvOS SDK included[97]Downloadable simulators[98]Notes
7.07A220September 16, 201510.10.410.11 (15A278)iOS 9 (13A340)watchOS 2 (13S343)-iOS 8.4 + iOS 8.3 + iOS 8.2 + iOS 8.1
7.0.17A1001September 28, 2015
7.17B91bOctober 21, 201510.10.5iOS 9.1 (13B137)tvOS 9.0 (13T393)added iOS 9.0
7.1.17B1005November 9, 2015
7.27C68December 8, 201510.11.2 (15C43)iOS 9.2 (13C75)watchOS 2.1 (13S660)tvOS 9.1 (13U78)added iOS 9.1 + tvOS 9.0 + watchOS 2.0
7.2.17C1002February 3, 2016tvOS 9.1 (13U79)
7.37D175March 21, 201610.1110.11.4 (15E60)iOS 9.3 (13E230)watchOS 2.2 (13V143)tvOS 9.2 (13Y227)added iOS 9.2 + tvOS 9.1 + watchOS 2.1
7.3.17D1012[90] 7D1014[91]May 3, 2016
8.08A218aSeptember 13, 201610.11.510.12 (16A300)iOS 10 (14A345)watchOS 3 (14S326)tvOS 10.0 (14T328)added iOS 9.3 + tvOS 9.2 + watchOS 2.2
8.18B62October 27, 201610.12.1 (16B2649)iOS 10.1 (14B72)watchOS 3.1 (14S471a)added iOS 10.0 (there is no watchOS 3.0)
8.28C38December 12, 201610.12.2 (16C58)iOS 10.2 (14C89)tvOS 10.1 (14U591)added iOS 10.1 + tvOS 10.0
8.2.18C1002December 19, 2016
8.38E162March 27, 201710.1210.12.4 (16E185)iOS 10.3 (14E269)watchOS 3.2 (14V243)tvOS 10.2 (14W260)added iOS 10.2 + tvOS 10.1 (there is no watchOS 3.1)
8.3.18E1000aApril 6, 2017
8.3.28E2002April 18, 2017
8.3.38E3004bJune 5, 2017iOS 10.3.1 (14E8301)added watchOS 3.1 Simulator[100]
9.09A235September 19, 201710.12.610.13 (17A360)iOS 11.0 (15A372)watchOS 4.0 (15R372)tvOS 11.0 (15J380)added iOS 10.3.1 + tvOS 10.2 + watchOS 3.2
9.0.19A1004October 15, 2017
9.19B55October 31, 201710.13.1 (17B48)iOS 11.1 (15B93/15B101)watchOS 4.1 (15R846)tvOS 11.1 (15J582)added iOS 11.0 + tvOS 11 + watchOS 4.0
9.29C40bDecember 4, 201710.13.2 (17C76)iOS 11.2 (15C107)watchOS 4.2 (15S100)tvOS 11.2 (15K104)added iOS 11.1 + tvOS 11.1 + watchOS 4.1
9.39E145March 29, 201810.13.210.13.4 (17E189)iOS 11.3 (15E217)watchOS 4.3 (15T212)tvOS 11.3 (15L211)added iOS 11.2 + tvOS 11.2 + watchOS 4.2
9.3.19E501May 9, 2018
9.49F1027aMay 29, 2018iOS 11.4 (15F79)tvOS 11.4 (15L576)added iOS 11.3 + tvOS 11.3
9.4.19F2000June 13, 2018
10.010A255September 17, 201810.13.610.14 (18A384)iOS 12.0 (16A366)watchOS 5.0 (16R363)tvOS 12.0 (16J364)added iOS 11.4 + tvOS 11.4 + watchOS 4.3
10.110B61October 30, 201810.14.1 (18B71)iOS 12.1 (16B91)watchOS 5.1 (16R591)tvOS 12.1 (16J602)added iOS 12.0 + tvOS 12.0 + watchOS 5.0
10.210E125Mar 25, 201910.14.3[101][102]10.14.4 (18E219)iOS 12.2 (16E226)watchOS 5.2 (16T224)tvOS 12.2 (16L225)added iOS 12.1 + tvOS 12.1 + watchOS 5.1
10.2.110E1001Apr 17, 2019
10.310G8July 22, 201910.14.3[103]10.14.6 (18G74)iOS 12.4 (16G73)watchOS 5.3 (16U567)tvOS 12.4 (16M567)added iOS 12.2 + tvOS 12.2 + watchOS 5.2
VersionBuildRelease dateminmacOS to run[93]macOS SDK(s)[94]iOS SDK included[95]watchOS SDK included[96]tvOS SDK included[97]Downloadable simulators[98]Notes

Xcode 11.0 - 14.x (since SwiftUI framework)

[edit]
Version history
VersionBuildRelease dateminmacOS to run[93][104]macOS SDK(s)[105][104]iOS SDK included[106][104]watchOS SDK included[107][104]tvOS SDK included[108][104]Notes
11.011A420aSeptember 20, 201910.14.410.15 (19A547)iOS 13.0 (17A566)watchOS 6.0 (17R566)tvOS 13.0 (17J559)[110]
11.111A1027October 7, 2019iOS 13.1 (17A820)[111]
11.211B52October 31, 201910.15.1 (19B81)iOS 13.2 (17B80)watchOS 6.1 (17S80)tvOS 13.2 (17K81)[112]
11.2.111B500November 12, 201910.15.1 (19B89)iOS 13.2 (17B102)tvOS 13.2 (17K90)[113][114]
11.311C29December 10, 201910.15.2 (19B90)[115][114]
11.3.111C505[116]January 13, 2020[117][114]
11.411E146March 24, 202010.15.210.15.4 (19E258)iOS 13.4 (17E255)watchOS 6.2 (17T255)tvOS 13.4 (17L255)[118][114]
11.4.111E503aApril 15, 2020iOS 13.4 (17E8258)[119][114]
11.511E608cMay 20, 2020iOS 13.5 (17F65)[120][114]
11.611E708July 15, 202010.15.6 (19G68)iOS 13.6 (17G64)[121][114]
11.711E801aSeptember 1, 2020iOS 13.7 (17H22)[122][114]
12.012A7209September 16, 202010.15.4 (Intel-based Mac)
11.0 (Apple silicon Mac)
iOS 14 (18A390)watchOS 7 (18R382)tvOS 14 (18J390)[123][114]
12.0.112A7300September 24, 2020[124][114]
12.112A7403October 20, 2020iOS 14.1 (18A8394)[125][114]
12.1.1 RC12A7605bOctober 30, 2020iOS 14.2 (18B79)watchOS 7.1 (18R579)tvOS 14.2 (18K54)[126][114]
12.212B45bNovember 12, 202011.0 (20A2408)[127][114]
12.312C33December 14, 202011.1 (20C63)iOS 14.3 (18C61)watchOS 7.2 (18S561)tvOS 14.3 (18K559)[128][114]
12.412D4eJanuary 26, 2021iOS 14.4 (18D46)[129][114]
12.512E262April 26, 202111.011.3 (20E214)iOS 14.5 (18E182)watchOS 7.4 (18T187)tvOS 14.5 (18L191)[130][114]
12.5.112E507June 21, 2021[131][114]
13.013A233September 20, 202111.3iOS 15.0 (19A339)watchOS 8.0 (19R341)tvOS 15.0 (19J344)[132][114]
13.113A1030dOctober 25, 202112.0 (21A344)watchOS 8.0.1 (19R351)[133][114]
13.213C90December 13, 202112.1 (21C46)iOS 15.2 (19C51)watchOS 8.3 (19S51)tvOS 15.2 (19K50)[134][114]
13.2.113C100December 17, 2021[135][114]
13.313E113March 14, 202212.012.3 (21E226)iOS 15.4 (19E239)watchOS 8.5 (19T241)tvOS 15.4 (19L439)[136][114]
13.3.113E500aApril 11, 2022[137][114]
13.413F17aMay 16, 2022iOS 15.5 (19F64)[138][114]
13.4.113F100June 2, 2022[139][114]
14.014A309September 12, 202212.5iOS 16.0 (20A360)watchOS 9.0 (20R362)tvOS 16.0 (20J373)[140][114]
14.0.114A400September 26, 2022[141][114]
14.114B47bNovember 1, 202213.0 (22A372)iOS 16.1 (20B71)watchOS 9.1 (20S71)tvOS 16.1 (20K67)[142][114]
14.214C18December 13, 202213.1 (22C55)iOS 16.2 (20C52)[143][114]
14.314E222bMarch 30, 202313.013.3 (22E245)iOS 16.4 (20E238)watchOS 9.4 (20T248)tvOS 16.4 (20L489)[144][114]
14.3.114E300cJune 1, 2023[145][114]
VersionBuildRelease dateminmacOS to run[93]macOS SDK(s)[105]iOS SDK included[106]watchOS SDK included[107]tvOS SDK included[108]Notes

Xcode 15.0 - (since visionOS support)

[edit]
Version history
VersionBuildRelease dateminmacOS to run[93][104]macOS SDK(s)[105][104]iOS SDK included[106][104]watchOS SDK included[107][104]tvOS SDK included[108][104]visionOS SDK included[146][104]Notes
15.015A240dSeptember 18, 202313.514.0 (23A334)iOS 17.0 (21A325)watchOS 10.0 (21R354)tvOS 17.0 (21J351)[147][114]
15.0.115A507October 18, 2023iOS 17.0 (21A326)[148][114]
15.115C65December 11, 202314.2 (23C53)iOS 17.2 (21C52)watchOS 10.2 (21S355)tvOS 17.2 (21K354)[149][114]
15.215C500bJanuary 8, 2024visionOS 1.0 (21N301)[150][114]
15.315E5204aMarch 5, 202414.014.4 (23E5196c)iOS 17.4 (21E212)watchOS 10.4 (21T5202c)tvOS 17.4 (21L5212c)visionOS 1.1 (21O5188b)[151][114]
15.415F31dMay 13, 202414.5 (23F73)iOS 17.5 (21F77)watchOS 10.5 (21T569)tvOS 17.5 (21L566)visionOS 1.2 (21O5565d)[152][114]
16.016A242dSeptember 16, 202414.515.0 (24A336)iOS 18.0 (22A3362)watchOS 11.0 (22R350)tvOS 18.0 (22J358)visionOS 2.0 (22N331)[153][114]
16.116B40October 28, 202415.1 (24B75)iOS 18.1 (22B74)watchOS 11.1 (22R574)tvOS 18.1 (22J572)visionOS 2.1 (22N573)[154][114]
16.216C5032aDecember 11, 202415.2 (24C94)iOS 18.2 (22C146)watchOS 11.2 (22S97)tvOS 18.2 (22K152)visionOS 2.2 (22N799)[155][114]
16.3 beta 216E5121hMarch 6, 202515.215.4 (24E5222d)iOS 18.4 (22E5216d)watchOS 11.4 (22T5228d)tvOS 18.4 (22L5234d)visionOS 2.4 (22O5215d)[156][114]
VersionBuildRelease dateminmacOS to run[93]macOS SDK(s)[105]iOS SDK included[106]watchOS SDK included[107]tvOS SDK included[108]visionOS SDK included[146]Notes

Toolchain versions

[edit]
DiscontinuedCurrent releaseBeta

Xcode 1.0 - Xcode 2.x (before iOS support)

[edit]
Toolchain version history
Xcodecctoolsld64GCC 3.1GCC 3.3GCC 4.0
1.0495-1256--
1.2499--1640-
1.5525--1666-
2.5622.962.1-18195370
Xcodecctoolsld64GCC 3.1GCC 3.3GCC 4.0[157]

Xcode 3.0 - Xcode 4.x

[edit]
Toolchain version history
Xcodecctoolsld64GCC 4.0GCC 4.2LLVM-GCC 4.2LLVMApple LLVM-Clang
3.1.4698.185.2.15493557755552064.3-
3.275095.2.125493564656462118-
3.2.175095.2.125493564656462206-
3.2.277397.25493565956462207.51.0.2
3.2.378297.145494566456582326.101.5 (60)
3.2.478297.145494566456582326.101.5 (60)
3.2.578297.175494566456582333.41.6 (70)
3.2.679597.175494566656582335.61.7 (77) (based on LLVM 2.9svn)
4.0800123.25494566656582335.92.0 (137) (based on LLVM 2.9svn)
4.0.2??5494566656582335.92.0 (137) (based on LLVM 2.9svn)
4.1806123.2.1-566656582335.15.002.1 (163.7.1) (based on LLVM 3.0svn)
4.2809127.2--56582336.1.003.0 (211.10.1) (based on LLVM 3.0svn)
4.3822112--56582336.9.003.1 (tags/Apple/clang-318.0.45) (based on LLVM 3.1svn)
4.3.1??--56582336.9.003.1 (tags/Apple/clang-318.0.54) (based on LLVM 3.1svn)
4.3.2??--56582336.9.003.1 (tags/Apple/clang-318.0.58) (based on LLVM 3.1svn)[158]
4.3.3??--56582336.9.003.1 (tags/Apple/clang-318.0.61) (based on LLVM 3.1svn)[158]
4.4829133.3--56582336.11.004.0 (tags/Apple/clang-421.0.57) (based on LLVM 3.1svn)[158]
4.4.1??--56582336.11.004.0 (tags/Apple/clang-421.0.60) (based on LLVM 3.1svn)[158]
4.5836134.9--56582336.11.004.1 (tags/Apple/clang-421.11.65) (based on LLVM 3.1svn)[158]
4.5.1??--56582336.11.004.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn)[158]
4.5.2??--56582336.11.004.1 (tags/Apple/clang-421.11.66) (based on LLVM 3.1svn)[158]
4.6839136--56582336.11.004.2 (clang-425.0.24) (based on LLVM 3.2svn)[158]
4.6.1??--56582336.11.004.2 (clang-425.0.27) (based on LLVM 3.2svn)[158]
4.6.2??--56582336.11.004.2 (clang-425.0.28) (based on LLVM 3.2svn)[158]
4.6.3??--56582336.11.004.2 (clang-425.0.28) (based on LLVM 3.2svn)[158]
Xcodecctoolsld64GCC 4.0[157]GCC 4.2[159]LLVM-GCC 4.2[160]LLVM[160]Apple LLVM-Clang[161]

Xcode 5.0 - 6.x (since arm64 support)

[edit]
Toolchain version history
Xcodecctoolsld64LLVMClang version stringSwift version string
5.0.0846.2.1224.13.3svn5.0 (clang-500.2.75) (based on LLVM 3.3svn)[158]
5.0.1846.2.4224.13.3svn5.0 (clang-500.2.79) (based on LLVM 3.3svn)[158]
5.0.2846.2.4224.13.3svn5.0 (clang-500.2.79) (based on LLVM 3.3svn)[158]
5.1855236.33.4svn5.1 (clang-503.0.38) (based on LLVM 3.4svn)[158]
5.1.1855236.43.4svn5.1 (clang-503.0.40) (based on LLVM 3.4svn)[158]
6.0.1862241.83.5svn6.0 (clang-600.0.51) (based on LLVM 3.5svn)[158]1.0 (swift-600.0.51.4)
6.1862241.93.5svn6.0 (clang-600.0.54) (based on LLVM 3.5svn)[158]1.1 (swift-600.0.54.20)
6.1.1862241.93.5svn6.0 (clang-600.0.56) (based on LLVM 3.5svn)[158]1.1 (swift-600.0.56.1)
6.2862241.93.5svn6.0 (clang-600.0.57) (based on LLVM 3.5svn)[158]1.1 (swift-600.0.57.4)
6.38702423.6.0svn6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn)[158]1.2 (swiftlang-602.0.49.3)
6.3.18702423.6.0svn6.1.0 (clang-602.0.49) (based on LLVM 3.6.0svn)[158]1.2 (swiftlang-602.0.49.6)
6.3.28702423.6.0svn6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)[158]1.2 (swiftlang-602.0.53.1)
6.4870242.23.6.0svn6.1.0 (clang-602.0.53) (based on LLVM 3.6.0svn)[158]1.2 (swiftlang-602.0.53.1)
Xcodecctools[162]ld64[163]LLVM[164]Clang version string[165]Swift version string[166]

Xcode 7.0 - 10.x (since Free On-Device Development)

[edit]
Toolchain version history
Xcodecctoolsld64LLVMClang version stringSwift version string
7.0877.5253.33.7.0svn[164]7.0.0 (clang-700.0.72)[158]2.0 (swiftlang-700.0.59)
7.0.1877.5253.3.33.7.0svn[164]7.0.0 (clang-700.0.72)[158]2.0 (swiftlang-700.0.59)
7.1877.7253.63.7.0svn[164]7.0.0 (clang-700.1.76)[158]2.1 (swiftlang-700.1.101.6)
7.2877.8253.93.7.0svn[164]7.0.2 (clang-700.1.81)[158]2.1.1 (swiftlang-700.1.101.15)
7.2.1877.8253.93.7.0svn[164]7.0.2 (clang-700.1.81)[158]2.1.1 (swiftlang-700.1.101.15)
7.3886264.3.1013.8.0svn[164]7.3.0 (clang-703.0.29)[158]2.2 (swiftlang-703.0.18.1)
7.3.1886264.3.1023.8.0svn[164]7.3.0 (clang-703.0.31)[158]2.2 (swiftlang-703.0.18.8)
8.0895274.13.9.0svn[164]8.0.0 (clang-800.0.38)[158]3.0 (swiftlang-800.0.46.2)
8.1895274.13.9.0svn[164]8.0.0 (clang-800.0.42.1)[158]3.0.1 (swiftlang-800.0.58.6 clang-800.0.42.1)
8.2895274.23.9.0svn[164]8.0.0 (clang-800.0.42.1)[158]3.0.2 (swiftlang-800.0.63 clang-800.0.42.1)
8.2.1895274.23.9.0svn[164]8.0.0 (clang-800.0.42.1)[158]3.0.2 (swiftlang-800.0.63 clang-800.0.42.1)
8.3898278.43.9.0svn[164]8.1.0 (clang-802.0.38)[158]3.1 (swiftlang-802.0.48 clang-802.0.38)
8.3.1898278.43.9.0svn[164]8.1.0 (clang-802.0.41)[158]3.1 (swiftlang-802.0.51 clang-802.0.41)
8.3.2898278.43.9.0svn[164]8.1.0 (clang-802.0.42)[158]3.1 (swiftlang-802.0.53 clang-802.0.42)
8.3.3898278.43.9.0svn[164]8.1.0 (clang-802.0.42)[158]3.1 (swiftlang-802.0.53 clang-802.0.42)
9.0900302.34.0.0[167]9.0.0 (clang-900.0.37)[158]4.0 (swiftlang-900.0.65 clang-900.0.37)
9.1900302.3.14.0.0[168]9.0.0 (clang-900.0.38)[158]4.0.2 (swiftlang-900.0.69.2 clang-900.0.38)
9.29003054.0.0[169]9.0.0 (clang-900.0.39.2)[158]4.0.3 (swiftlang-900.0.74.1 clang-900.0.39.2)
9.3906351.85.0.2[170]9.1.0 (clang-902.0.39.1)[158]4.1 (swiftlang-902.0.48 clang-902.0.37.1)
9.3.1906351.85.0.2[170]9.1.0 (clang-902.0.39.1)[158]4.1 (swiftlang-902.0.48 clang-902.0.37.1)
9.4906351.85.0.2[171]9.1.0 (clang-902.0.39.2)[158]4.1.2 (swiftlang-902.0.54 clang-902.0.39.2)
9.4.1906351.85.0.2[171]9.1.0 (clang-902.0.39.2)[158]4.1.2 (swiftlang-902.0.54 clang-902.0.39.2)
10.0921.0.1409.126.0.1[172]10.0.0 (clang-1000.11.45.2)[158]4.2 (swiftlang-1000.11.37.1 clang-1000.11.45.1)

10.1

921.0.1409.126.0.1[173]10.0.0 (clang-1000.11.45.5)[158]4.2.1 (swiftlang-1000.11.42 clang-1000.11.45.1)

10.2

927.0.2450.37.0.0[174]10.0.1 (clang-1001.0.46.3)[158]5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3)

10.2.1

927.0.2450.37.0.0[175]10.0.1 (clang-1001.0.46.4)[158]5.0.1 (swiftlang-1001.0.82.4 clang-1001.0.46.5)

10.3

927.0.2450.37.0.0[175]10.0.1 (clang-1001.0.46.4)[158]5.0.1 (swiftlang-1001.0.82.4 clang-1001.0.46.5)
Xcodecctools[162]ld64[163]LLVM[164]Clang version string[165]Swift version string[166]

Xcode 11.0 - 14.x (since SwiftUI framework)

[edit]
Toolchain version history
Xcodecctoolsld64LLVMClang version stringSwift version string

11.0

949.0.1512.48.0.0[176]11.0.0 (clang-1100.0.33.8)[158]5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7)

11.1

949.0.1512.48.0.0[176]11.0.0 (clang-1100.0.33.8)[158]5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7)

11.2

949.0.15208.0.0[177]11.0.0 (clang-1100.0.33.12)[178]5.1.2 (swiftlang-1100.0.278 clang-1100.0.33.9)

11.2.1

949.0.15208.0.0[177]11.0.0 (clang-1100.0.33.12)[165]5.1.2 (swiftlang-1100.0.278 clang-1100.0.33.9)

11.3

949.0.15308.0.0[179]11.0.0 (clang-1100.0.33.16)[165]5.1.3 (swiftlang-1100.0.282.1 clang-1100.0.33.15)

11.3.1

949.0.15308.0.0[179]11.0.0 (clang-1100.0.33.17)[165]5.1.3 (swiftlang-1100.0.282.1 clang-1100.0.33.15)

11.4

959.0.1556.59.0.0[180]11.0.3 (clang-1103.0.32.29)[165]5.2 (swiftlang-1103.0.32.1 clang-1103.0.32.29)

11.4.1

959.0.1556.69.0.0[181]11.0.3 (clang-1103.0.32.59)[165]5.2.2 (swiftlang-1103.0.32.6 clang-1103.0.32.51)

11.5

959.0.1556.69.0.0[182]11.0.3 (clang-1103.0.32.62)[165]5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53)

11.6

959.0.1556.69.0.0[182]11.0.3 (clang-1103.0.32.62)[165]5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53)

11.7

959.0.1556.69.0.0[182]11.0.3 (clang-1103.0.32.62)[165]5.2.4 (swiftlang-1103.0.32.9 clang-1103.0.32.53)

12.0

973.0.160910.0.0[183]12.0.0 (clang-1200.0.32.2)[165]5.3 (swiftlang-1200.0.29.2 clang-1200.0.30.1)

12.0.1

973.0.160910.0.0[183]12.0.0 (clang-1200.0.32.2)[165]5.3 (swiftlang-1200.0.29.2 clang-1200.0.30.1)

12.1

973.0.160910.0.0[183]12.0.0 (clang-1200.0.32.21)[165]5.3 (swiftlang-1200.0.29.2 clang-1200.0.30.1)

12.1.1 RC

973.0.160910.0.0[183]12.0.0 (clang-1200.0.32.21)[165]5.3 (swiftlang-1200.0.29.2 clang-1200.0.30.1)

12.2

973.4609.710.0.0[184]12.0.0 (clang-1200.0.32.27)[165]5.3.1 (swiftlang-1200.0.41 clang-1200.0.32.8)

12.3

977.1609.810.0.0[185]12.0.0 (clang-1200.0.32.28)[165]5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)

12.4

977.1609.810.0.0[185]12.0.0 (clang-1200.0.32.29)[165]5.3.2 (swiftlang-1200.0.45 clang-1200.0.32.28)

12.5

980650.911.1.0[186]12.0.5 (clang-1205.0.22.9)[165]5.4 (swiftlang-1205.0.26.9 clang-1205.0.19.55)

12.5.1

980.1650.911.1.0[187]12.0.5 (clang-1205.0.22.11)[165]5.4.2 (swiftlang-1205.0.28.2 clang-1205.0.19.57)

13.0

98671112.0.0[188]13.0.0 (clang-1300.0.29.3)[165]5.5 (swiftlang-1300.0.31.1 clang-1300.0.29.1)

13.1

98671112.0.0[189]13.0.0 (clang-1300.0.29.3)[165]5.5.1 (swiftlang-1300.0.31.4 clang-1300.0.29.6)

13.2

98671112.0.0[190]13.0.0 (clang-1300.0.29.30)[165]5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)

13.2.1

98671112.0.0[190]13.0.0 (clang-1300.0.29.30)[165]5.5.2 (swiftlang-1300.0.47.5 clang-1300.0.29.30)

13.3

994.176213.0.0[191]13.1.6 (clang-1316.0.21.2)[165]5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)

13.3.1

994.176213.0.0[191]13.1.6 (clang-1316.0.21.2.3)[165]5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)

13.4

994.176413.0.0[192]13.1.6 (clang-1316.0.21.2.5)[165]5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)

13.4.1

994.176413.0.0[192]13.1.6 (clang-1316.0.21.2.5)[165]5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12)

14.0

1001.2819.614.0.0[193]14.0.0 (clang-1400.0.29.102)[165]5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)

14.0.1

1001.2819.614.0.0[193]14.0.0 (clang-1400.0.29.102)[165]5.7 (swiftlang-5.7.0.127.4 clang-1400.0.29.50)

14.1

1001.2820.114.0.0[194]14.0.0 (clang-1400.0.29.202)[165]5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)

14.2

1001.2820.114.0.0[195]14.0.0 (clang-1400.0.29.202)[165]5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)

14.3

1005.2857.115.0.0[196]14.0.3 (clang-1403.0.22.14.1)[165]5.8 (swiftlang-5.8.0.124.1 clang-1403.0.22.11.100)

14.3.1

1005.2857.115.0.0[197]14.0.3 (clang-1403.0.22.14.1)[165]5.8.1 (swiftlang-5.8.0.124.5 clang-1403.0.22.11.100)
Xcodecctools[162]ld64[163]LLVM[164]Clang version string[165]Swift version string[166]

Xcode 15.0 - (since visionOS support)

[edit]
Toolchain version history
XcodecctoolsdyldLLVMClang version stringSwift version string

15.0

1009.21015.716.0.0[198]15.0.0 (clang-1500.0.40.1)5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)

15.0.1

1009.21015.716.0.0[198]15.0.0 (clang-1500.0.40.1)5.9 (swiftlang-5.9.0.128.108 clang-1500.0.40.1)

15.1

1009.31022.116.0.0[199]15.0.0 (clang-1500.1.0.2.5)5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)

15.2

1009.31022.116.0.0[199]15.0.0 (clang-1500.1.0.2.5)5.9.2 (swiftlang-5.9.2.2.56 clang-1500.1.0.2.5)

15.3

1010.61053.1216.0.0[200]15.0.0 (clang-1500.3.9.4)5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)

15.4

1010.61053.1216.0.0[200]15.0.0 (clang-1500.3.9.4)5.10 (swiftlang-5.10.0.13 clang-1500.3.9.4)

16.0

1021.41115.7.317.0.6[201]16.0.0 (clang-1600.0.26.3)6.0 (swiftlang-6.0.0.9.10 clang-1600.0.26.2)

16.1

1021.41115.7.317.0.6[202]16.0.0 (clang-1600.0.26.4)6.0.2 (swiftlang-6.0.2.1.2 clang-1600.0.26.4)

16.2

1022.21115.7.317.0.6[203]16.0.0 (clang-1600.0.26.6)6.0.3 (swiftlang-6.0.3.1.10 clang-1600.0.30.1)

16.3 beta 2

1024.31167.4.119.1.4[204]17.0.0 (clang-1700.0.13.2)6.1 (swiftlang-6.1.0.109.103 clang-1700.0.13.2)
Xcodecctools[162]dyld[163]LLVMClang version string[165]Swift version string[166]

See also

[edit]

References

[edit]
  1. ^John Siracusa (November 9, 2003)."Mac OS X 10.3 Panther". RetrievedJanuary 15, 2022.
  2. ^"Xcode 16.2 (16C5032a) - Releases - Apple Developer".Apple Developer.Apple Inc. December 11, 2024. RetrievedDecember 12, 2024.
  3. ^"Xcode 16.3 beta 2 (16E5121h) - Releases - Apple Developer".Apple Developer.Apple Inc. March 5, 2025. RetrievedMarch 6, 2025.
  4. ^ab"Xcode on the Mac App Store". Apple Inc. RetrievedSeptember 16, 2024.
  5. ^"Downloads". Apple Developer. RetrievedMay 29, 2018.
  6. ^"Xcode - Features".developer.apple.com. RetrievedMarch 11, 2020.
  7. ^Adriaan van Os."GNU Pascal and Xcode". Microbizz.nl. Archived fromthe original on April 18, 2012. RetrievedJune 21, 2010.
  8. ^"Using Free Pascal with Xcode". Pascal-central.com. Archived fromthe original on June 12, 2010. RetrievedJune 21, 2010.
  9. ^"Tools". macada.org. Archived fromthe original on July 27, 2011. RetrievedFebruary 8, 2011.
  10. ^"CSharpPlugin - cocoa-sharp-dev - Google Code". RetrievedJune 21, 2010.
  11. ^"xkick brings Golang support to Xcode 11 - Blog - Wirecog".www.wirecog.com. RetrievedMay 24, 2020.
  12. ^"CamelBones, an Objective-C/Perl bridge for Mac OS X & GNUStep - Home". Camelbones.sourceforge.net. December 1, 2004. RetrievedJune 21, 2010.
  13. ^"D for Xcode". RetrievedFebruary 9, 2019.
  14. ^Prince McLean (June 20, 2008)."Apple's other open secret: the LLVM Compiler". RetrievedApril 3, 2012.
  15. ^"Xcode 3.2: teh awesome edition". August 30, 2009. Archived fromthe original on June 16, 2013.
  16. ^ab"New Features in Xcode 4: Xcode 4.2". Apple. September 16, 2015. RetrievedSeptember 15, 2016.
  17. ^ab"New Features in Xcode 4: Xcode 4.5". Apple Inc. September 16, 2015. RetrievedOctober 18, 2015.
  18. ^"New Features in Xcode 5: Xcode 5.0". September 16, 2015. RetrievedSeptember 15, 2016.
  19. ^"Keynote - WWDC 2014 - Videos".Apple Developer. RetrievedFebruary 1, 2019.
  20. ^"Apple's new Swift language explained: A clever move to boost iOS, while holding Android apps back - ExtremeTech".www.extremetech.com. June 3, 2014. RetrievedFebruary 1, 2019.
  21. ^"Swift: Apple's next-generation programming language 4 years in the making".iMore. June 4, 2014. RetrievedFebruary 1, 2019.
  22. ^Mayo, Benjamin (June 2, 2014)."Apple announces new Xcode, 'Swift' programming language".9to5Mac. RetrievedFebruary 1, 2019.
  23. ^"Swift Resources - Apple Developer".developer.apple.com. RetrievedFebruary 1, 2019.
  24. ^"A Swift Tour — The Swift programming language (Swift 5)".docs.swift.org. RetrievedFebruary 5, 2019.
  25. ^Swift.org."A Swift Tour". Archived fromthe original on February 4, 2023. RetrievedFebruary 4, 2023.
  26. ^Victor, Bret (September 2012)."Learnable Programming".worrydream.com.
  27. ^"Getting the Most out of Playgrounds in Xcode - WWDC 2018 - Videos".Apple Developer. RetrievedNovember 25, 2020.
  28. ^David Holt says (May 15, 2010)."Facts about WebObjects (WebObjects Community)". Wocommunity.org. Archived fromthe original on October 7, 2013. RetrievedJune 21, 2010.
  29. ^"WOLips". Wiki.objectstyle.org. February 27, 2010. RetrievedJune 21, 2010.
  30. ^"Apple - Mac OS X Leopard - Features - 300+ New Features". Archived fromthe original on October 16, 2007.
  31. ^"Apple Developer Tools for Java".Apple. RetrievedFebruary 8, 2011.
  32. ^"WWDC Software Notes: Safari 5, Xcode 4, iTunes 9.2". Mac Rumors. June 8, 2010. RetrievedJune 21, 2010.
  33. ^"Developer Tools - What's New in Xcode 4".Apple Developer. RetrievedFebruary 8, 2011.
  34. ^"Apple makes Xcode free to all with release of 4.1 on Mac App Store".AppleInsider. July 20, 2011. RetrievedJuly 3, 2013.
  35. ^"New Features in Xcode 4: Xcode 4.1". Apple Inc. RetrievedSeptember 15, 2016.
  36. ^"Why can't I download Xcode 4.2 for Snow Leopard?". RetrievedMay 2, 2015.
  37. ^"New Features in Xcode 4: Xcode 4.3". Apple Inc. RetrievedSeptember 15, 2016.
  38. ^"New Features in Xcode 4: Xcode 4.3.1 and 4.3.2". Apple Inc. RetrievedSeptember 15, 2016.
  39. ^"New Features in Xcode 4: Xcode 4.3.3". Apple Inc. RetrievedSeptember 15, 2016.
  40. ^Gurman, Mark (July 25, 2012)."Xcode 4.4 rolls out to OS X, iOS developers via the Mac App Store".9to5Mac. RetrievedAugust 2, 2012.
  41. ^"New Features in Xcode 4: Xcode 4.4". Apple Inc. RetrievedSeptember 15, 2016.
  42. ^"Apple seeds first iOS 7 and OS X Mavericks betas to developers".AppleInsider. June 10, 2013. RetrievedJune 11, 2013.
  43. ^"New Features in Xcode 5: Xcode 5.1". April 20, 2015. RetrievedSeptember 15, 2016.
  44. ^"Xcode 6, Swift, CloudKit, and more surprising developer news from WWDC 2014".TechRepublic. June 5, 2014. RetrievedJune 6, 2014.
  45. ^"New Features in Xcode 7: Xcode 7.0".developer.apple.com. RetrievedSeptember 15, 2016.
  46. ^"What's New in Xcode 8".developer.apple.com. RetrievedSeptember 15, 2016.
  47. ^"What's New in Xcode 9".developer.apple.com. RetrievedJuly 24, 2017.
  48. ^"New Downloads Now Available".Apple Developer. Apple. Archived fromthe original on September 20, 2017. RetrievedSeptember 19, 2017.
  49. ^"Xcode - What's New". RetrievedJune 4, 2018.
  50. ^Sadun, Erica [@ericasadun] (June 5, 2018)."Hold onto Xcode 9.4 and earlier to support 32-bit customers. Xcode 10 no longer compiles 32-bit applications" (Tweet) – viaTwitter.,
  51. ^"Xcode 10 Release Notes". RetrievedSeptember 17, 2018.
  52. ^"Xcode 10 (10A254a) - Releases - Apple Developer".Apple Developer.Apple Inc. September 17, 2018. RetrievedSeptember 12, 2018.
  53. ^ab"Xcode 11 Beta Release Notes". RetrievedJune 15, 2019.
  54. ^"What's New in Xcode". RetrievedJune 15, 2019.
  55. ^"Xcode 11.4 Release Notes". RetrievedSeptember 12, 2020.
  56. ^abcd"Xcode - Support - Apple Developer".developer.apple.com. RetrievedMarch 23, 2023.
  57. ^"Concurrency".Swift Docs.
  58. ^"32-bit app support has been discontinued in Xcode 14".Apple Developer.Apple Inc. June 6, 2022. RetrievedMarch 22, 2023.
  59. ^"Xcode 16 Release Notes". RetrievedFebruary 18, 2025.
  60. ^ab"iPhone Software Development: Old versions of iPhone SDK". April 6, 2010. RetrievedMay 2, 2015.
  61. ^"About Xcode for Mac, iPad, and iPhone Xcode 3.2.2 developer tools for Mac SDK 10.6 and iPhone SDK 3.2"(PDF). Apple Developer. RetrievedMay 2, 2015.
  62. ^"About Xcode and iOS SDK Xcode 3.2.3 for Mac OS X 10.6 and iOS 4.0.1"(PDF). Apple Developer. RetrievedMay 2, 2015.
  63. ^"About Xcode and iOS SDK Xcode 3.2.4 for Mac OS X 10.6 and iOS 4.1"(PDF). Apple Developer. RetrievedMay 2, 2015.
  64. ^"About Xcode and iOS SDK Xcode 3.2.5 for Mac OS X 10.6 and iOS 4.2"(PDF). Apple Developer. RetrievedMay 2, 2015.
  65. ^"Old versions of iPhone SDK". April 6, 2010.There were several releases of Xcode 3.2.3: with iOS 4.0; with iOS 4.0.1; with iOS 4.0.2 SDK
  66. ^"About Xcode and iOS SDK - Xcode 3.2.6 for Mac OS X 10.6 and iOS 4.3 (Developers only)"(PDF). Apple Developer. RetrievedMay 2, 2015.
  67. ^"About Xcode and iOS SDK - Xcode 4.0.1 and iOS 4.3 (Developers only)"(PDF). Apple Developer. RetrievedMay 2, 2015.
  68. ^"Xcode".iTunes. Archived from the original on July 30, 2011. RetrievedMay 2, 2015.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  69. ^"About Xcode 4.1 for Snow Leopard (Developers only)"(PDF). RetrievedMay 2, 2015.
  70. ^"About Xcode 4.2 for Snow Leopard (Developers only)"(PDF). RetrievedMay 2, 2015.
  71. ^"Mac App Store - Xcode".iTunes. Archived from the original on September 24, 2011. RetrievedMay 2, 2015.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  72. ^"How to Install Older iOS Simulators in XCode 4.2.1 (SDK5.0)". RetrievedMay 2, 2015.
  73. ^"iphone - Xcode 4.2.1 for Snow Leopard - Stack Overflow". RetrievedMay 2, 2015.
  74. ^"Mac App Store - Xcode".iTunes. Archived from the original on February 2, 2012. RetrievedMay 2, 2015.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  75. ^"Mac App Store - Xcode".iTunes. Archived from the original on February 18, 2012. RetrievedMay 2, 2015.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  76. ^"Mac App Store - Xcode".Mac App Store. Archived from the original on July 1, 2012. RetrievedMay 2, 2015.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  77. ^"iphone - Install Simulator SDK 4.3 to Xcode 4.4 on Mountain Lion - Stack Overflow". RetrievedMay 2, 2015.
  78. ^"Xcode 4.4 Release Notes"(PDF). Apple Developer. RetrievedMay 2, 2015.
  79. ^"Mac App Store - Xcode".Mac App Store. Archived from the original on July 25, 2013. RetrievedMay 2, 2015.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  80. ^"Unauthorized - Apple Developer"(PDF). RetrievedMay 2, 2015.
  81. ^"Mac App Store - Xcode".Mac App Store. Archived from the original on October 10, 2013. RetrievedMay 2, 2015.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  82. ^"Mac App Store - Xcode".Mac App Store. Archived from the original on May 30, 2014. RetrievedMay 2, 2015.{{cite web}}: CS1 maint: bot: original URL status unknown (link)
  83. ^"iphone - Xcode 5 and iOS 7: Architecture and Valid architectures".Stack Overflow.
  84. ^"ios5 - Use iOS 5 Simulator in XCode 5? - Stack Overflow". RetrievedMay 2, 2015.
  85. ^"Apple Developer Documentation".developer.apple.com.
  86. ^"Install ios 5 simulator to xcode 5.1?". RetrievedMay 2, 2015.
  87. ^"iphone - ios 6.0 Simulator in xcode 5.1 - Stack Overflow". RetrievedMay 2, 2015.
  88. ^"ios - Xcode 6 Standard architectures exclude armv7s - Stack Overflow". RetrievedMay 2, 2015.
  89. ^"xcode - iOS 6.1 simulator on OSX 10.10 Yosemite - Stack Overflow". RetrievedMay 2, 2015.
  90. ^abDeveloper Portal version
  91. ^abMAS version
  92. ^LSMinimumSystemVersion from Info.plist
  93. ^abcdefplutil -p Xcode.app/Contents/Info.plist | grep LSMinimumSystemVersion
  94. ^abcd Xcode.app/Contents/Developer; cd Platforms/MacOSX.platform/Developer/SDKs/; plutil -p */System/Library/CoreServices/SystemVersion.plist; cd -
  95. ^abcd Xcode.app/Contents/Developer; ls Platforms/iPhoneOS.platform/DeviceSupport/ | grep '(.*)'
  96. ^abcd Xcode.app/Contents/Developer; ls Platforms/WatchOS.platform/DeviceSupport/ | grep '(.*)'
  97. ^abcd Xcode.app/Contents/Developer; ls Platforms/AppleTVOS.platform/DeviceSupport/ | grep '(.*)'
  98. ^abfrom preferences -> downloads
  99. ^"macOS 10.14 Mojave can't open Xcode 8.3.3 (immediately crash)".Stack Overflow.
  100. ^Unable to run since MacOS 10.14[99]
  101. ^"Xcode 10.2 Release Notes".Apple Developer.
  102. ^"Xcode 10.2.1 Release Notes".Apple Developer.
  103. ^"Xcode 10.3 Release Notes".Apple Developer.
  104. ^abcdefghijk"Xcode Releases".xcodereleases.com. RetrievedJuly 2, 2020.
  105. ^abcdcd Xcode.app/Contents/Developer; cd Platforms/MacOSX.platform/Developer/SDKs/; plutil -p */System/Library/CoreServices/SystemVersion.plist
  106. ^abcdcd Xcode.app/Contents/Developer; plutil -p Platforms/iPhoneOS.platform/version.plist
  107. ^abcdcd Xcode.app/Contents/Developer; plutil -p Platforms/WatchOS.platform/version.plist
  108. ^abcdcd Xcode.app/Contents/Developer; plutil -p Platforms/AppleTVOS.platform/version.plist
  109. ^"SwiftUI: Getting Started".Kodeco.com.
  110. ^To see the SwiftUI preview, you need macOS 10.15[109]
  111. ^"Xcode 11.1 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedDecember 10, 2019.
  112. ^"Xcode 11.2 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedNovember 4, 2019.
  113. ^"Xcode 11.2.1 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedDecember 10, 2019.
  114. ^abcdefghijklmnopqrstuvwxyzaaabacadaeafagahaiajakalamanao"Xcode Releases".xcodereleases.com. RetrievedDecember 10, 2019.
  115. ^"Xcode 11.3 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedNovember 10, 2019.
  116. ^Developer Portal version. MAS version build is 11C504
  117. ^"Xcode 11.3.1 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedJanuary 14, 2020.
  118. ^"Xcode 11.4 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedMarch 24, 2020.
  119. ^"Xcode 11.4.1 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedApril 16, 2020.
  120. ^"Xcode 11.5 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedMay 20, 2020.
  121. ^"Xcode 11.6 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedJuly 15, 2020.
  122. ^"Xcode 11.7 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedAugust 26, 2020.
  123. ^"Xcode 12 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedAugust 25, 2020.
  124. ^"Xcode 12.0.1 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedSeptember 25, 2020.
  125. ^"Xcode 12.1 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedOctober 20, 2020.
  126. ^"Xcode 12.1.1 RC Release Notes".Apple Developer Documentation. Apple Inc. RetrievedOctober 30, 2020.
  127. ^"Xcode 12.2 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedNovember 12, 2020.
  128. ^"Xcode 12.3 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedDecember 14, 2020.
  129. ^"Xcode 12.4 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedJanuary 27, 2021.
  130. ^"Xcode 12.5 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedApril 26, 2021.
  131. ^"Xcode 12.5.1 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedJune 21, 2021.
  132. ^"Xcode 13 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedSeptember 21, 2021.
  133. ^"Xcode 13.1 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedOctober 26, 2021.
  134. ^"Xcode 13.2 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedDecember 13, 2021.
  135. ^"Xcode 13.2.1 Release Notes".Apple Developer Documentation. Apple Inc. RetrievedDecember 13, 2021.
  136. ^"Xcode 13.3 Release Notes". Apple Inc. RetrievedMarch 15, 2022.
  137. ^"Xcode 13.3.1 Release Notes". Apple Inc. RetrievedApril 12, 2022.
  138. ^"Xcode 13.4 Release Notes". Apple Inc. RetrievedMay 16, 2022.
  139. ^"Xcode 13.4.1 Release Notes". Apple Inc. RetrievedJune 3, 2022.
  140. ^"Xcode 14 Release Notes". Apple Inc. RetrievedSeptember 13, 2022.
  141. ^"Xcode 14.0.1 Release Notes". Apple Inc. RetrievedSeptember 27, 2022.
  142. ^"Xcode 14.1 Release Notes". Apple Inc. RetrievedNovember 3, 2022.
  143. ^"Xcode 14.2 Release Notes". Apple Inc. RetrievedDecember 14, 2022.
  144. ^"Xcode 14.3 Release Notes". Apple Inc. RetrievedMarch 31, 2023.
  145. ^"Xcode 14.3.1 Release Notes". Apple Inc. RetrievedJune 2, 2023.
  146. ^abcd Xcode.app/Contents/Developer; plutil -p Platforms/XROS.platform/version.plist
  147. ^"Xcode 15 Release Notes". Apple Inc. RetrievedSeptember 19, 2023.
  148. ^"Xcode 15.0.1 Release Notes". Apple Inc. RetrievedOctober 19, 2023.
  149. ^"Xcode 15.1 Release Notes". Apple Inc. RetrievedDecember 12, 2023.
  150. ^"Xcode 15.2 Release Notes". Apple Inc. RetrievedJanuary 9, 2024.
  151. ^"Xcode 15.3 Release Notes". Apple Inc. RetrievedFebruary 27, 2024.
  152. ^"Xcode 15.5 Release Notes". Apple Inc. RetrievedMay 14, 2024.
  153. ^"Xcode 16 Release Notes". Apple Inc. RetrievedSeptember 17, 2024.
  154. ^"Xcode 16.1 Release Notes". Apple Inc. RetrievedOctober 31, 2024.
  155. ^"Xcode 16.2 Release Notes". Apple Inc. RetrievedDecember 12, 2024.
  156. ^"Xcode 16.3 Beta 2 Release Notes". Apple Inc. RetrievedMarch 6, 2025.
  157. ^ab/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/gcc-4.0 --version
  158. ^abcdefghijklmnopqrstuvwxyzaaabacadaeafagahaiajakalamanaoapaqarasatauavawaxayazba"Xcode clang version record gist". RetrievedMay 29, 2013.
  159. ^/Developer/usr/bin/gcc-4.2 --version
  160. ^abXcode.app/Contents/Developer/usr/bin/llvm-gcc --version
  161. ^Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang --version
  162. ^abcd/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/otool --version
  163. ^abcd/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/ld -v
  164. ^abcdefghijklmnopqr"Clang - Source Browser".opensource.apple.com. Apple Inc. RetrievedMay 11, 2017.
  165. ^abcdefghijklmnopqrstuvwxyzaaabacadaeafagahai/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang --version
  166. ^abcd/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/swift --version
  167. ^"swift-llvm/CMakeLists.txt at swift-4.0-RELEASE".GitHub. RetrievedNovember 18, 2018.
  168. ^"swift-llvm/CMakeLists.txt at swift-4.0.2-RELEASE".GitHub. RetrievedNovember 18, 2018.
  169. ^"swift-llvm/CMakeLists.txt at swift-4.0.3-RELEASE".GitHub. RetrievedNovember 18, 2018.
  170. ^ab"swift-llvm/CMakeLists.txt at swift-4.1-RELEASE".GitHub. RetrievedNovember 18, 2018.
  171. ^ab"swift-llvm/CMakeLists.txt at swift-4.1.2-RELEASE".GitHub. RetrievedNovember 18, 2018.
  172. ^"swift-llvm/CMakeLists.txt at swift-4.2-RELEASE".GitHub. RetrievedNovember 18, 2018.
  173. ^"swift-llvm/CMakeLists.txt at swift-4.2.1-RELEASE".GitHub. RetrievedNovember 18, 2018.
  174. ^"swift-llvm/CMakeLists.txt at swift-5.0-RELEASE".GitHub. RetrievedApril 10, 2019.
  175. ^ab"swift-llvm/CMakeLists.txt at swift-5.0.1-RELEASE".GitHub. RetrievedJune 15, 2019.
  176. ^ab"swift-llvm/CMakeLists.txt at swift-5.1-RELEASE".GitHub. RetrievedMarch 20, 2020.
  177. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.1.2-RELEASE".GitHub. RetrievedMarch 20, 2020.
  178. ^"Xcode Releases on Twitter: 'The SDKs in #Xcode11.2 GM...'". RetrievedNovember 4, 2019.
  179. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.1.3-RELEASE".GitHub. RetrievedMarch 20, 2020.
  180. ^"llvm-project/llvm/CMakeLists.txt at swift-5.2-RELEASE".GitHub. RetrievedMarch 26, 2020.
  181. ^"llvm-project/llvm/CMakeLists.txt at swift-5.2.2-RELEASE".GitHub. RetrievedApril 21, 2020.
  182. ^abc"llvm-project/llvm/CMakeLists.txt at swift-5.2.4-RELEASE".GitHub. RetrievedMay 20, 2020.
  183. ^abcd"llvm-project/llvm/CMakeLists.txt at swift-5.3-RELEASE".GitHub. RetrievedSeptember 17, 2020.
  184. ^"llvm-project/llvm/CMakeLists.txt at swift-5.3.1-RELEASE".GitHub. RetrievedNovember 13, 2020.
  185. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.3.2-RELEASE".GitHub. RetrievedJanuary 22, 2021.
  186. ^"llvm-project/llvm/CMakeLists.txt at swift-5.4-RELEASE".GitHub. RetrievedApril 27, 2021.
  187. ^"llvm-project/llvm/CMakeLists.txt at swift-5.4.1-RELEASE".GitHub. RetrievedJune 22, 2021.
  188. ^"llvm-project/llvm/CMakeLists.txt at swift-5.5-RELEASE".GitHub. RetrievedSeptember 21, 2021.
  189. ^"llvm-project/llvm/CMakeLists.txt at swift-5.5.1-RELEASE".GitHub. RetrievedOctober 28, 2021.
  190. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.5.2-RELEASE".GitHub. RetrievedDecember 14, 2021.
  191. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.6-RELEASE".GitHub. RetrievedMarch 15, 2022.
  192. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.6.1-RELEASE".GitHub. RetrievedMay 13, 2022.
  193. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.7-RELEASE".GitHub. RetrievedSeptember 13, 2022.
  194. ^"llvm-project/llvm/CMakeLists.txt at swift-5.7.1-RELEASE".GitHub. RetrievedNovember 3, 2022.
  195. ^"llvm-project/llvm/CMakeLists.txt at swift-5.7.2-RELEASE".GitHub. RetrievedDecember 14, 2022.
  196. ^"llvm-project/llvm/CMakeLists.txt at swift-5.8-RELEASE".GitHub. RetrievedMarch 31, 2023.
  197. ^"llvm-project/llvm/CMakeLists.txt at swift-5.8.1-RELEASE".GitHub. RetrievedMarch 2, 2023.
  198. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.9-RELEASE".GitHub. RetrievedSeptember 19, 2023.
  199. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.9.2-RELEASE".GitHub. RetrievedDecember 12, 2023.
  200. ^ab"llvm-project/llvm/CMakeLists.txt at swift-5.10-RELEASE".GitHub. RetrievedMarch 11, 2024.
  201. ^"llvm-project/llvm/CMakeLists.txt at swift-6.0-RELEASE".GitHub. RetrievedSeptember 17, 2024.
  202. ^"llvm-project/llvm/CMakeLists.txt at swift-6.0.2-RELEASE".GitHub. RetrievedOctober 31, 2024.
  203. ^"llvm-project/llvm/CMakeLists.txt at swift-6.0.3-RELEASE".GitHub. RetrievedDecember 12, 2024.
  204. ^"llvm-project/llvm/utils/gn/secondary/llvm/version.gni at /swift-6.1-DEVELOPMENT-SNAPSHOT-2025-03-04-a".GitHub. RetrievedMarch 6, 2025.

External links

[edit]
C,C++
Open source
Freeware
Retail
Discontinued
Java
Open source
Freeware
Retail
Discontinued
JavaScript
Open source
CLI (.NET)
Open source
Freeware
Retail
Discontinued
Flash
PHP
Open source
Proprietary
R
Python
Open source
Proprietary
Pascal,
Object Pascal
Open source
Freeware
Retail
Discontinued
BASIC
Open source
Freeware
Retail
Discontinued
Go
Open source
Freeware
Retail
Haxe
POP-11
Online
Current tools
Xcode
Former tools
Retrieved from "https://en.wikipedia.org/w/index.php?title=Xcode&oldid=1280554372"
Categories:
Hidden categories:

[8]ページ先頭

©2009-2025 Movatter.jp