Skip to content

Commit 7eb6a10

Browse files
authored
Merge pull request #1640 from ahoppen/swiftlang-migration
Update links for repositories moved to the swiftlang org on GitHub
2 parents 3519916 + 5a18e83 commit 7eb6a10

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
# Swift Compiler Driver
22

3-
Swift's compiler driver is a program that coordinates the compilation of Swift source code into various compiled results: executables, libraries, object files, Swift modules and interfaces, etc. It is the program one invokes from the command line to build Swift code (i.e., `swift` or `swiftc`) and is often invoked on the developer's behalf by a build system such as the [Swift Package Manager (SwiftPM)](https://github.com/apple/swift-package-manager) or Xcode's build system.
3+
Swift's compiler driver is a program that coordinates the compilation of Swift source code into various compiled results: executables, libraries, object files, Swift modules and interfaces, etc. It is the program one invokes from the command line to build Swift code (i.e., `swift` or `swiftc`) and is often invoked on the developer's behalf by a build system such as the [Swift Package Manager (SwiftPM)](https://github.com/swiftlang/swift-package-manager) or Xcode's build system.
44

55
The `swift-driver` project is a new implementation of the Swift compiler driver that is intended to replace the [existing driver](https://github.com/apple/swift/tree/main/lib/Driver) with a more extensible, maintainable, and robust code base. The specific goals of this project include:
66

77
* A maintainable, robust, and flexible Swift code base
88
* Library-based architecture that allows better integration with build tools
9-
* Leverage existing Swift build technologies ([SwiftPM](https://github.com/apple/swift-package-manager), [llbuild](https://github.com/apple/swift-llbuild))
9+
* Leverage existing Swift build technologies ([SwiftPM](https://github.com/swiftlang/swift-package-manager), [llbuild](https://github.com/apple/swift-llbuild))
1010
* A platform for experimenting with more efficient build models for Swift, including compile servers and unifying build graphs across different driver invocations
1111

1212
## Getting Started

Sources/SwiftDriver/SwiftDriver.docc/SwiftDriver.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ into various compiled results: executables, libraries, object files, Swift
99
modules and interfaces, etc. It is the program one invokes from the command line
1010
to build Swift code (i.e., swift or swiftc) and is often invoked on the
1111
developer's behalf by a build system such as the
12-
[Swift Package Manager](https://github.com/apple/swift-package-manager)
12+
[Swift Package Manager](https://github.com/swiftlang/swift-package-manager)
1313
or Xcode's build system.
1414

1515
## Topics

0 commit comments

Comments
 (0)