- Notifications
You must be signed in to change notification settings - Fork0
The Swift Programming Language
License
CodaFi/swift
Folders and files
| Name | Name | Last commit message | Last commit date | |
|---|---|---|---|---|
Repository files navigation
| Architecture | Master | Package | |
|---|---|---|---|
| macOS | x86_64 | ||
| Ubuntu 16.04 | x86_64 | ||
| Ubuntu 18.04 | x86_64 | ||
| Ubuntu 20.04 | x86_64 | ||
| CentOS 8 | x86_64 | ||
| Amazon Linux 2 | x86_64 |
Swift Community-Hosted CI Platforms
| OS | Architecture | Build |
|---|---|---|
| Ubuntu 16.04 | PPC64LE | |
| Ubuntu 18.04 | AArch64 | |
| Ubuntu 20.04 | AArch64 | |
| CentOS 8 | AArch64 | |
| Amazon Linux 2 | AArch64 | |
| Android | ARMv7 | |
| Android | AArch64 | |
| Windows 2019 (VS 2017) | x86_64 | |
| Windows 2019 (VS 2019) | x86_64 |
Swift TensorFlow Community-Hosted CI Platforms
| OS | Architecture | Build |
|---|---|---|
| Ubuntu 16.04 | x86_64 | |
| macOS 10.13 | x86_64 | |
| Ubuntu 16.04 (GPU) | x86_64 |
Swift is a high-performance system programming language. It has a cleanand modern syntax, offers seamless access to existing C and Objective-C codeand frameworks, and is memory safe by default.
Although inspired by Objective-C and many other languages, Swift is not itself aC-derived language. As a complete and independent language, Swift packages corefeatures like flow control, data structures, and functions, with high-levelconstructs like objects, protocols, closures, and generics. Swift embracesmodules, eliminating the need for headers and the code duplication they entail.
To learn more about the programming language, visitswift.org.
Contributions to Swift are welcomed and encouraged! Please see theContributing to Swift guide.
To be a truly great community,Swift.org needs to welcomedevelopers from all walks of life, with different backgrounds, and with a widerange of experience. A diverse and friendly community will have more greatideas, more unique perspectives, and produce more great code. We will workdiligently to make the Swift community welcoming to everyone.
To give clarity of what is expected of our members, Swift has adopted thecode of conduct defined by the Contributor Covenant. This document is usedacross many open source communities, and we think it articulates our valueswell. For more, see theCode of Conduct.
These instructions give the most direct path to a working Swift developmentenvironment. To build from source you will need about 2 GB of disk space for thesource code and up to 70 GB of disk space for the build artifacts with fulldebugging. Depending on your machine, a clean build can take a few minutes toseveral hours. Naturally, incremental builds are much faster.
Once you are able to build things successfully and have a compile-test-debugloop going, check out thedevelopment tips forbetter productivity while working on the compiler.
You can also skimdocs/README.md to understand whathigh-level documentation is available.
macOS, Ubuntu Linux LTS, and the latest Ubuntu Linux release are currentlysupported as host development operating systems.
Please make sure you use Python 2.x. Python 3.x is not supported currently.
To build for macOS, you needXcode 12 beta 3.The required version of Xcode changes frequently, and is often a beta release.Check this document or the host information onhttps://ci.swift.org for thecurrent required version.
Swift's build tooling is meant to support spaces in the paths passed to them,but using spaces sometimes tickles bugs in Swift's build scripts or the toolsthey rely on. For example,SR-13441is caused by a space in the Xcode path used on macOS. If you see Swift's buildtooling misbehave due to a space in a path, pleasereport the bug on the Swift bug trackerand then change the path to work around it.
You will also needCMake andNinja,which can be installed via a package manager:
brew install cmake ninjaYou can also usehomebrew-bundlefrom the root of this repository's working directory to install all of thesedependencies:
brew bundlesudo port install cmake ninjaInstructions for installing CMake and Ninja directly can be foundbelow.
For Ubuntu, you'll need the following development dependencies:
sudo apt-get install \ clang \ cmake \ git \ icu-devtools \ libcurl4-openssl-dev \ libedit-dev \ libicu-dev \ libncurses5-dev \ libpython-dev \ libsqlite3-dev \ libxml2-dev \ ninja-build \ pkg-config \ python \ python-six \ rsync \ swig \ systemtap-sdt-dev \ tzdata \ uuid-devNote: LLDB currently requires at leastswig-1.3.40 but will successfully buildwith version 2 shipped with Ubuntu.
Note: For Ubuntu 20.04, uselibpython2-dev in place of the libpython-dev package above.
First create a directory for all of the Swift sources:
mkdir swift-sourcecd swift-sourceNote: This is important since update-checkout (see below) checks outrepositories next to the Swift source directory. This means that if one clonesSwift and has other unrelated repositories, update-checkout may not clone thoserepositories and will update them instead. Be aware thatupdate-checkoutcurrently does not support paths with non-ASCII characters. If such charactersare present in the path toswift-source,update-checkout will fail.
Via HTTPS For those checking out sources as read-only, HTTPS works best:
git clone https://github.com/apple/swift.git./swift/utils/update-checkout --cloneVia SSH For those who plan on regularly making direct commits,cloning over SSH may provide a better experience (which requiresuploading SSH keys to GitHub):
git clone git@github.com:apple/swift.git./swift/utils/update-checkout --clone-with-sshThebuild-script is a high-level build automation script that supports basicoptions such as building a Swift-compatible LLDB, building the Swift PackageManager, building for various platforms, running tests after builds, and more.
There are two primary build systems to use: Xcode and Ninja. The Xcode buildsystem allows you to work in Xcode, but Ninja is a bit faster and supportsmore environments.
First, make sure that you're in the swift directory:
cd swiftTo build using Ninja, run:
utils/build-script --release-debuginfoWhen developing Swift, it helps to build what you're working on in a debugconfiguration while building the rest of the project with optimizations. Beloware some examples of using debug variants:
utils/build-script --release-debuginfo --debug-swift # Swift frontend built in debugutils/build-script --release-debuginfo --debug-swift-stdlib # Standard library built in debugutils/build-script --release-debuginfo --debug-swift --force-optimized-typechecker # Swift frontend sans type checker built in debugLimiting the amount of debug code in the compiler has a very large impact onSwift compile times, and in turn the test execution time. If you want to buildthe entire project in debug, you can run:
utils/build-script --debugFor documentation of all available arguments, as well as additional usageinformation, see the inline help:
utils/build-script -hTo build using Xcode, specify the--xcode argument on any of the above commands.Xcode can be used to edit the Swift source code, but it is not currentlyfully supported as a build environment for SDKs other than macOS. The generatedXcode project does not integrate with the test runner, but the tests can be runwith the 'check-swift' target.
All of the build products are placed inswift-source/build/${TOOL}-${MODE}/${PRODUCT}-${PLATFORM}/.If macOS Swift with Ninja in DebugAssert mode was built, all of the productswould be inswift-source/build/Ninja-DebugAssert/swift-macosx-x86_64/. Ithelps to save this directory as an environment variable for future use.
export SWIFT_BUILD_DIR="~/swift-source/build/Ninja-DebugAssert/swift-macosx-x86_64"Once the first build has completed, Ninja can perform fast incremental builds ofvarious products. These incremental builds are a big timesaver when developingand debugging.
cd ${SWIFT_BUILD_DIR}ninja swift-frontendThis will build the Swift compiler, but will not rebuild the standard library orany other target. Building theswift-stdlib target as an additional layer oftesting from time to time is also a good idea. To build just the standardlibrary, run:
ninja swift-stdlibIt is always a good idea to do a full build after usingupdate-checkout.
To open the Swift project in Xcode, open${SWIFT_BUILD_DIR}/Swift.xcodeproj.It will auto-create alot of schemes for all of the available targets. Acommon debug flow would involve:
- Select the 'swift-frontend' scheme.
- Pull up the scheme editor (⌘⇧<).
- Select the 'Arguments' tab and click the '+'.
- Add the command line options.
- Close the scheme editor.
- Build and run.
Another option is to change the scheme to "Wait for executable to be launched",then run the build product in Terminal.
Swift toolchains are created using the scriptbuild-toolchain. Thisscript is used by swift.org's CI to produce snapshots and can allow for one tolocally reproduce such builds for development or distribution purposes. A typicalinvocation looks like the following:
$ ./swift/utils/build-toolchain $BUNDLE_PREFIXwhere$BUNDLE_PREFIX is a string that will be prepended to the builddate to give the bundle identifier of the toolchain'sInfo.plist. Forinstance, if$BUNDLE_PREFIX wascom.example, the toolchainproduced will have the bundle identifiercom.example.YYYYMMDD. Itwill be created in the directory you run the script with a filenameof the form:swift-LOCAL-YYYY-MM-DD-a-osx.tar.gz.
Beyond building the toolchain,build-toolchain also supports thefollowing (non-exhaustive) set of useful options::
--dry-run: Perform a dry run build. This is off by default.--test: Test the toolchain after it has been compiled. This is off by default.--distcc: Use distcc to speed up the build by distributing the c++ part ofthe swift build. This is off by default.
More options may be added over time. Please pass--help tobuild-toolchain to see the full set of options.
On macOS if one wants to install such a toolchain into Xcode:
- Untar and copy the toolchain to one of
/Library/Developer/Toolchains/or~/Library/Developer/Toolchains/. E.x.:
$ sudo tar -xzf swift-LOCAL-YYYY-MM-DD-a-osx.tar.gz -C / $ tar -xzf swift-LOCAL-YYYY-MM-DD-a-osx.tar.gz -C ~/The script also generates an archive containing debug symbols whichcan be installed over the main archive allowing symbolication of anycompiler crashes.
$ sudo tar -xzf swift-LOCAL-YYYY-MM-DD-a-osx-symbols.tar.gz -C / $ tar -xzf swift-LOCAL-YYYY-MM-DD-a-osx-symbols.tar.gz -C ~/- Specify the local toolchain for Xcode's use via
Xcode->Toolchains.
Make sure you are using thecorrect release of Xcode.
If you have changed Xcode versions but still encounter errors that appear tobe related to the Xcode version, try passing--clean tobuild-script.
When a new version of Xcode is released, you can update your build withoutrecompiling the entire project by passing the--reconfigure option.
Make sure all repositories are up to date with theupdate-checkout commanddescribed above.
Seedocs/Testing.md, in particular the section onlit.py.
Be sure to look through thedocsdirectory for more information about the compiler. In particular, the documentstitledDebugging the Swift Compiler andContinuous Integration for Swift are veryhelpful to understand before submitting your first PR.
To read the compiler documentation, start by installing theSphinx documentation generator tool by running thecommand:
easy_install -U "Sphinx < 2.0"Once complete, you can build the Swift documentation by changing directory intodocs and typingmake. Thiscompiles the.rst files in thedocsdirectory into HTML in thedocs/_build/html directory.
Many of the docs are out of date, but you can see some historical designdocuments in thedocs directory.
Another source of documentation is the standard library itself, located instdlib. Much of the language is actually implemented in the library(includingInt), and the standard library gives some examples of what can beexpressed today.
CMake is the core infrastructure used to configure builds ofSwift and its companion projects; at least version 3.16.5 is required.
On macOS, you can download theCMake Binary Distribution,bundled as an application, copy it to/Applications, and add the embeddedcommand line tools to yourPATH:
export PATH=/Applications/CMake.app/Contents/bin:$PATHOn Linux, if you have not already installed Swift'sdevelopmentdependencies, you can download and install the CMakepackage separately using the following command:
sudo apt-get install cmakeNinja is the current recommended build systemfor building Swift and is the default configuration generated by CMake.Pre-builtpackagesare available for macOS and Linux distributions. You can also clone Ninjanext to the other projects and it will be bootstrapped automatically:
Via HTTPS
git clone https://github.com/ninja-build/ninja.git && cd ninjagit checkout releasecat READMEVia SSH
git clone git@github.com:ninja-build/ninja.git && cd ninjagit checkout releasecat READMEAbout
The Swift Programming Language
Resources
License
Code of conduct
Contributing
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Packages0
Languages
- C++51.1%
- Swift44.2%
- Python2.3%
- CMake0.7%
- Objective-C0.6%
- C0.4%
- Other0.7%