From 5a18e8380331c8d3da953f7d15ec68d5c4af3a8f Mon Sep 17 00:00:00 2001 From: Alex Hoppen Date: Tue, 25 Jun 2024 04:49:45 -0700 Subject: [PATCH] Update links for repositories moved to the swiftlang org on GitHub --- README.md | 4 ++-- Sources/SwiftDriver/SwiftDriver.docc/SwiftDriver.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 664b3b74c..6d962557a 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # Swift Compiler Driver -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. +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. 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: * A maintainable, robust, and flexible Swift code base * Library-based architecture that allows better integration with build tools -* Leverage existing Swift build technologies ([SwiftPM](https://github.com/apple/swift-package-manager), [llbuild](https://github.com/apple/swift-llbuild)) +* Leverage existing Swift build technologies ([SwiftPM](https://github.com/swiftlang/swift-package-manager), [llbuild](https://github.com/apple/swift-llbuild)) * A platform for experimenting with more efficient build models for Swift, including compile servers and unifying build graphs across different driver invocations ## Getting Started diff --git a/Sources/SwiftDriver/SwiftDriver.docc/SwiftDriver.md b/Sources/SwiftDriver/SwiftDriver.docc/SwiftDriver.md index b09eaa40e..e24883a55 100644 --- a/Sources/SwiftDriver/SwiftDriver.docc/SwiftDriver.md +++ b/Sources/SwiftDriver/SwiftDriver.docc/SwiftDriver.md @@ -9,7 +9,7 @@ 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](https://github.com/apple/swift-package-manager) +[Swift Package Manager](https://github.com/swiftlang/swift-package-manager) or Xcode's build system. ## Topics