├── .gitignore ├── .markdownlint.json ├── .tm_properties ├── .troubleshooting ├── .gitignore ├── CrossCompile │ ├── CrossCompile.rb │ └── Hello.swift ├── Tests │ └── swift-build.rb ├── Troubleshooter.rb ├── dispatch │ ├── block.cpp.rb │ └── libswiftDispatch.so.rb ├── foundation │ ├── LIBC_PRIVATE.rb │ └── __BEGIN_DECLS.rb ├── llb │ └── stdarg.h.rb ├── stdlib │ ├── glibc.swiftmodule.rb │ └── libswiftRemoteMirror.rb └── swift │ ├── Array.cpp.rb │ ├── BackDeployment.cpp.rb │ ├── Casting.cpp.rb │ ├── DarwinLink.rb │ ├── Glibc.o.rb │ ├── Immediate.cpp.rb │ ├── Invalid_Abbref_for_Record.rb │ ├── MetadataSource.cpp.rb │ └── SwiftRT-ELF.cpp.rb ├── .unused ├── Builders │ ├── CMarkBuilder.rb │ ├── CurlBuilder.rb │ ├── DispatchBuilder.rb │ ├── FoundationBuilder.rb │ ├── ICUBaseBuilder.rb │ ├── ICUBuilder.rb │ ├── ICUHostBuilder.rb │ ├── ICUSwiftHostBuilder.rb │ ├── LLBBuilder.rb │ ├── LLVMBuilder.rb │ ├── OpenSSLBuilder.rb │ ├── SPMBuilder.rb │ ├── SwiftBuilder.rb │ ├── SwiftSPMBuilder.rb │ └── XMLBuilder.rb ├── Shell │ ├── bootstrap.sh │ ├── brew.sh │ ├── environment.sh │ └── verify.sh ├── Vagrantfile ├── android-destination.json └── swiftc-arm-linux-androideabi ├── .vscode ├── settings.json └── tasks.json ├── Assets ├── Readme.md ├── android-copy-libs ├── android-swift-build ├── android-swiftc ├── copy-libs-aarch64-linux-android ├── copy-libs-arm-linux-androideabi ├── copy-libs-i686-linux-android ├── copy-libs-x86_64-linux-android ├── swift-build-aarch64-linux-android ├── swift-build-arm-linux-androideabi ├── swift-build-i686-linux-android ├── swift-build-x86_64-linux-android ├── swiftc-aarch64-linux-android ├── swiftc-arm-linux-androideabi ├── swiftc-i686-linux-android └── swiftc-x86_64-linux-android ├── Automation.js ├── CHANGELOG.md ├── LICENSE.txt ├── Media └── irpin.jpg ├── NDK_VERSION ├── Patches ├── icu │ └── source │ │ ├── config │ │ └── mh-linux.diff │ │ ├── configure.diff │ │ └── data │ │ └── Makefile.in.diff ├── llbuild │ └── CMakeLists.txt.diff ├── spm │ └── Sources │ │ ├── Build │ │ ├── BuildPlan.swift.diff │ │ └── CMakeLists.txt.diff │ │ ├── Commands │ │ └── CMakeLists.txt.diff │ │ ├── LLBuildManifest │ │ └── CMakeLists.txt.diff │ │ ├── PackageGraph │ │ └── CMakeLists.txt.diff │ │ ├── PackageLoading │ │ └── CMakeLists.txt.diff │ │ ├── PackageModel │ │ └── CMakeLists.txt.diff │ │ ├── SPMBuildCore │ │ └── CMakeLists.txt.diff │ │ ├── SPMLLBuild │ │ └── CMakeLists.txt.diff │ │ ├── SourceControl │ │ └── CMakeLists.txt.diff │ │ ├── Workspace │ │ └── CMakeLists.txt.diff │ │ ├── XCBuildSupport │ │ └── CMakeLists.txt.diff │ │ ├── Xcodeproj │ │ └── CMakeLists.txt.diff │ │ ├── swift-build │ │ └── CMakeLists.txt.diff │ │ ├── swift-package │ │ └── CMakeLists.txt.diff │ │ ├── swift-run │ │ └── CMakeLists.txt.diff │ │ └── swift-test │ │ └── CMakeLists.txt.diff ├── swift-corelibs-foundation │ ├── CMakeLists.txt.diff │ ├── CoreFoundation │ │ ├── Base.subproj │ │ │ └── SwiftRuntime │ │ │ │ └── CoreFoundation.h.diff │ │ └── CMakeLists.txt.diff │ ├── Foundation │ │ └── CMakeLists.txt.diff │ └── Sources │ │ ├── CMakeLists.txt.diff │ │ └── Foundation │ │ └── Process.swift.diff ├── swift-corelibs-libdispatch │ ├── CMakeLists.txt.diff │ ├── cmake │ │ └── modules │ │ │ └── DispatchCompilerWarnings.cmake.diff │ └── src │ │ └── swift │ │ └── CMakeLists.txt.diff ├── swift-tools-support-core │ └── Sources │ │ ├── TSCBasic │ │ └── CMakeLists.txt.diff │ │ ├── TSCLibc │ │ └── CMakeLists.txt.diff │ │ └── TSCUtility │ │ └── CMakeLists.txt.diff └── swift │ ├── cmake │ └── modules │ │ ├── Libdispatch.cmake.diff │ │ └── SwiftConfigureSDK.cmake.diff │ └── stdlib │ ├── cmake │ └── modules │ │ └── AddSwiftStdlib.cmake.diff │ └── private │ └── CMakeLists.txt.diff ├── RELEASING.md ├── Readme.md ├── Tests ├── ADB.js ├── ProjectBuilder.js ├── TestAutomation.js ├── main.js ├── sample-exe │ ├── .gitignore │ ├── Builder.js │ └── Sources │ │ └── main.swift ├── sample-lib │ ├── .gitignore │ ├── Builder.js │ └── Sources │ │ ├── HelloMessage.swift │ │ └── main.swift └── sample-pkg │ ├── .gitignore │ ├── Builder.js │ ├── Package.swift │ └── Sources │ ├── CLib │ ├── Example.c │ ├── Example.h │ └── include │ │ └── Clib.h │ ├── CStdLib │ ├── FILE.c │ └── include │ │ └── CStdLib.h │ ├── CppLib │ ├── CppToC.cpp │ ├── CppToC.h │ ├── MyClass.cpp │ ├── MyClass.hpp │ └── include │ │ └── CppLib.h │ ├── Exe │ ├── SAConcurrencyConsumer.swift │ └── main.swift │ ├── Lib │ ├── CLibConsumer.swift │ ├── CppLibConsumer.swift │ └── HelloMessage.swift │ ├── SAConcurrency │ └── SAConcurrencyMain.swift │ └── StdLib │ └── FILE.swift ├── VERSION ├── lib ├── Archs.js ├── Archs │ ├── Arch.js │ ├── Arm64Arch.js │ ├── ArmArch.js │ ├── HostArch.js │ ├── x86Arch.js │ └── x86_64Arch.js ├── Builder.js ├── Builders │ ├── CMarkBuilder.js │ ├── CURLBuilder.js │ ├── DispatchBuilder.js │ ├── FoundationBuilder.js │ ├── ICUBaseBuilder.js │ ├── ICUBuilder.js │ ├── ICUHostBuilder.js │ ├── LLBBuilder.js │ ├── LLVMBuilder.js │ ├── SAPBuilder.js │ ├── SPMBuilder.js │ ├── SSLBuilder.js │ ├── SwiftBuilder.js │ ├── SwiftCryptoBuilder.js │ ├── SwiftDriverBuilder.js │ ├── SwiftStdLibBuilder.js │ ├── SwiftTSCBuilder.js │ ├── XMLBuilder.js │ └── YAMSBuilder.js ├── Components.js ├── Components │ ├── CMarkComponent.js │ ├── CURLComponent.js │ ├── Component.js │ ├── DispatchComponent.js │ ├── FoundationComponent.js │ ├── ICUCompoment.js │ ├── LLBComponent.js │ ├── LLVMComponent.js │ ├── SAPComponent.js │ ├── SPMComponent.js │ ├── SSLComponent.js │ ├── SwiftComponent.js │ ├── SwiftCryptoComponent.js │ ├── SwiftDriverComponent.js │ ├── SwiftStdLibComponent.js │ ├── SwiftTSCComponent.js │ ├── XMLComponent.js │ └── YAMSComponent.js ├── Config.js ├── Folder.js ├── Git │ ├── Checkout.js │ ├── Repo.js │ └── Revision.js ├── Installer.js ├── Location.js ├── NDK.js ├── Paths.js ├── Settings.js └── Tool.js └── main.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.gitignore -------------------------------------------------------------------------------- /.markdownlint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.markdownlint.json -------------------------------------------------------------------------------- /.tm_properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.tm_properties -------------------------------------------------------------------------------- /.troubleshooting/.gitignore: -------------------------------------------------------------------------------- 1 | /Build -------------------------------------------------------------------------------- /.troubleshooting/CrossCompile/CrossCompile.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/CrossCompile/CrossCompile.rb -------------------------------------------------------------------------------- /.troubleshooting/CrossCompile/Hello.swift: -------------------------------------------------------------------------------- 1 | print("X") 2 | -------------------------------------------------------------------------------- /.troubleshooting/Tests/swift-build.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/Tests/swift-build.rb -------------------------------------------------------------------------------- /.troubleshooting/Troubleshooter.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/Troubleshooter.rb -------------------------------------------------------------------------------- /.troubleshooting/dispatch/block.cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/dispatch/block.cpp.rb -------------------------------------------------------------------------------- /.troubleshooting/dispatch/libswiftDispatch.so.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/dispatch/libswiftDispatch.so.rb -------------------------------------------------------------------------------- /.troubleshooting/foundation/LIBC_PRIVATE.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/foundation/LIBC_PRIVATE.rb -------------------------------------------------------------------------------- /.troubleshooting/foundation/__BEGIN_DECLS.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/foundation/__BEGIN_DECLS.rb -------------------------------------------------------------------------------- /.troubleshooting/llb/stdarg.h.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/llb/stdarg.h.rb -------------------------------------------------------------------------------- /.troubleshooting/stdlib/glibc.swiftmodule.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/stdlib/glibc.swiftmodule.rb -------------------------------------------------------------------------------- /.troubleshooting/stdlib/libswiftRemoteMirror.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/stdlib/libswiftRemoteMirror.rb -------------------------------------------------------------------------------- /.troubleshooting/swift/Array.cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/swift/Array.cpp.rb -------------------------------------------------------------------------------- /.troubleshooting/swift/BackDeployment.cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/swift/BackDeployment.cpp.rb -------------------------------------------------------------------------------- /.troubleshooting/swift/Casting.cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/swift/Casting.cpp.rb -------------------------------------------------------------------------------- /.troubleshooting/swift/DarwinLink.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/swift/DarwinLink.rb -------------------------------------------------------------------------------- /.troubleshooting/swift/Glibc.o.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/swift/Glibc.o.rb -------------------------------------------------------------------------------- /.troubleshooting/swift/Immediate.cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/swift/Immediate.cpp.rb -------------------------------------------------------------------------------- /.troubleshooting/swift/Invalid_Abbref_for_Record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/swift/Invalid_Abbref_for_Record.rb -------------------------------------------------------------------------------- /.troubleshooting/swift/MetadataSource.cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/swift/MetadataSource.cpp.rb -------------------------------------------------------------------------------- /.troubleshooting/swift/SwiftRT-ELF.cpp.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.troubleshooting/swift/SwiftRT-ELF.cpp.rb -------------------------------------------------------------------------------- /.unused/Builders/CMarkBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/CMarkBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/CurlBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/CurlBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/DispatchBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/DispatchBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/FoundationBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/FoundationBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/ICUBaseBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/ICUBaseBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/ICUBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/ICUBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/ICUHostBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/ICUHostBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/ICUSwiftHostBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/ICUSwiftHostBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/LLBBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/LLBBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/LLVMBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/LLVMBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/OpenSSLBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/OpenSSLBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/SPMBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/SPMBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/SwiftBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/SwiftBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/SwiftSPMBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/SwiftSPMBuilder.rb -------------------------------------------------------------------------------- /.unused/Builders/XMLBuilder.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Builders/XMLBuilder.rb -------------------------------------------------------------------------------- /.unused/Shell/bootstrap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Shell/bootstrap.sh -------------------------------------------------------------------------------- /.unused/Shell/brew.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Shell/brew.sh -------------------------------------------------------------------------------- /.unused/Shell/environment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Shell/environment.sh -------------------------------------------------------------------------------- /.unused/Shell/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Shell/verify.sh -------------------------------------------------------------------------------- /.unused/Vagrantfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/Vagrantfile -------------------------------------------------------------------------------- /.unused/android-destination.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/android-destination.json -------------------------------------------------------------------------------- /.unused/swiftc-arm-linux-androideabi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.unused/swiftc-arm-linux-androideabi -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /Assets/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/Readme.md -------------------------------------------------------------------------------- /Assets/android-copy-libs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/android-copy-libs -------------------------------------------------------------------------------- /Assets/android-swift-build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/android-swift-build -------------------------------------------------------------------------------- /Assets/android-swiftc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/android-swiftc -------------------------------------------------------------------------------- /Assets/copy-libs-aarch64-linux-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/copy-libs-aarch64-linux-android -------------------------------------------------------------------------------- /Assets/copy-libs-arm-linux-androideabi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/copy-libs-arm-linux-androideabi -------------------------------------------------------------------------------- /Assets/copy-libs-i686-linux-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/copy-libs-i686-linux-android -------------------------------------------------------------------------------- /Assets/copy-libs-x86_64-linux-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/copy-libs-x86_64-linux-android -------------------------------------------------------------------------------- /Assets/swift-build-aarch64-linux-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/swift-build-aarch64-linux-android -------------------------------------------------------------------------------- /Assets/swift-build-arm-linux-androideabi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/swift-build-arm-linux-androideabi -------------------------------------------------------------------------------- /Assets/swift-build-i686-linux-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/swift-build-i686-linux-android -------------------------------------------------------------------------------- /Assets/swift-build-x86_64-linux-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/swift-build-x86_64-linux-android -------------------------------------------------------------------------------- /Assets/swiftc-aarch64-linux-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/swiftc-aarch64-linux-android -------------------------------------------------------------------------------- /Assets/swiftc-arm-linux-androideabi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/swiftc-arm-linux-androideabi -------------------------------------------------------------------------------- /Assets/swiftc-i686-linux-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/swiftc-i686-linux-android -------------------------------------------------------------------------------- /Assets/swiftc-x86_64-linux-android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Assets/swiftc-x86_64-linux-android -------------------------------------------------------------------------------- /Automation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Automation.js -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Media/irpin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Media/irpin.jpg -------------------------------------------------------------------------------- /NDK_VERSION: -------------------------------------------------------------------------------- 1 | 21.4.7075529 2 | -------------------------------------------------------------------------------- /Patches/icu/source/config/mh-linux.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/icu/source/config/mh-linux.diff -------------------------------------------------------------------------------- /Patches/icu/source/configure.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/icu/source/configure.diff -------------------------------------------------------------------------------- /Patches/icu/source/data/Makefile.in.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/icu/source/data/Makefile.in.diff -------------------------------------------------------------------------------- /Patches/llbuild/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/llbuild/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/Build/BuildPlan.swift.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/Build/BuildPlan.swift.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/Build/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/Build/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/Commands/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/Commands/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/LLBuildManifest/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/LLBuildManifest/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/PackageGraph/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/PackageGraph/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/PackageLoading/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/PackageLoading/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/PackageModel/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/PackageModel/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/SPMBuildCore/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/SPMBuildCore/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/SPMLLBuild/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/SPMLLBuild/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/SourceControl/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/SourceControl/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/Workspace/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/Workspace/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/XCBuildSupport/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/XCBuildSupport/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/Xcodeproj/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/Xcodeproj/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/swift-build/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/swift-build/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/swift-package/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/swift-package/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/swift-run/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/swift-run/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/spm/Sources/swift-test/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/spm/Sources/swift-test/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift-corelibs-foundation/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-corelibs-foundation/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift-corelibs-foundation/CoreFoundation/Base.subproj/SwiftRuntime/CoreFoundation.h.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-corelibs-foundation/CoreFoundation/Base.subproj/SwiftRuntime/CoreFoundation.h.diff -------------------------------------------------------------------------------- /Patches/swift-corelibs-foundation/CoreFoundation/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-corelibs-foundation/CoreFoundation/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift-corelibs-foundation/Foundation/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-corelibs-foundation/Foundation/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift-corelibs-foundation/Sources/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-corelibs-foundation/Sources/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift-corelibs-foundation/Sources/Foundation/Process.swift.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-corelibs-foundation/Sources/Foundation/Process.swift.diff -------------------------------------------------------------------------------- /Patches/swift-corelibs-libdispatch/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-corelibs-libdispatch/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift-corelibs-libdispatch/cmake/modules/DispatchCompilerWarnings.cmake.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-corelibs-libdispatch/cmake/modules/DispatchCompilerWarnings.cmake.diff -------------------------------------------------------------------------------- /Patches/swift-corelibs-libdispatch/src/swift/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-corelibs-libdispatch/src/swift/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift-tools-support-core/Sources/TSCBasic/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-tools-support-core/Sources/TSCBasic/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift-tools-support-core/Sources/TSCLibc/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-tools-support-core/Sources/TSCLibc/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift-tools-support-core/Sources/TSCUtility/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift-tools-support-core/Sources/TSCUtility/CMakeLists.txt.diff -------------------------------------------------------------------------------- /Patches/swift/cmake/modules/Libdispatch.cmake.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift/cmake/modules/Libdispatch.cmake.diff -------------------------------------------------------------------------------- /Patches/swift/cmake/modules/SwiftConfigureSDK.cmake.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift/cmake/modules/SwiftConfigureSDK.cmake.diff -------------------------------------------------------------------------------- /Patches/swift/stdlib/cmake/modules/AddSwiftStdlib.cmake.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift/stdlib/cmake/modules/AddSwiftStdlib.cmake.diff -------------------------------------------------------------------------------- /Patches/swift/stdlib/private/CMakeLists.txt.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Patches/swift/stdlib/private/CMakeLists.txt.diff -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/RELEASING.md -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Readme.md -------------------------------------------------------------------------------- /Tests/ADB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/ADB.js -------------------------------------------------------------------------------- /Tests/ProjectBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/ProjectBuilder.js -------------------------------------------------------------------------------- /Tests/TestAutomation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/TestAutomation.js -------------------------------------------------------------------------------- /Tests/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/main.js -------------------------------------------------------------------------------- /Tests/sample-exe/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Tests/sample-exe/Builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-exe/Builder.js -------------------------------------------------------------------------------- /Tests/sample-exe/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-exe/Sources/main.swift -------------------------------------------------------------------------------- /Tests/sample-lib/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /Tests/sample-lib/Builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-lib/Builder.js -------------------------------------------------------------------------------- /Tests/sample-lib/Sources/HelloMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-lib/Sources/HelloMessage.swift -------------------------------------------------------------------------------- /Tests/sample-lib/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-lib/Sources/main.swift -------------------------------------------------------------------------------- /Tests/sample-pkg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/.gitignore -------------------------------------------------------------------------------- /Tests/sample-pkg/Builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Builder.js -------------------------------------------------------------------------------- /Tests/sample-pkg/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Package.swift -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CLib/Example.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/CLib/Example.c -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CLib/Example.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/CLib/Example.h -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CLib/include/Clib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/CLib/include/Clib.h -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CStdLib/FILE.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/CStdLib/FILE.c -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CStdLib/include/CStdLib.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CppLib/CppToC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/CppLib/CppToC.cpp -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CppLib/CppToC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/CppLib/CppToC.h -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CppLib/MyClass.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/CppLib/MyClass.cpp -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CppLib/MyClass.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/CppLib/MyClass.hpp -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/CppLib/include/CppLib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/CppLib/include/CppLib.h -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/Exe/SAConcurrencyConsumer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/Exe/SAConcurrencyConsumer.swift -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/Exe/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/Exe/main.swift -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/Lib/CLibConsumer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/Lib/CLibConsumer.swift -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/Lib/CppLibConsumer.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/Lib/CppLibConsumer.swift -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/Lib/HelloMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/Lib/HelloMessage.swift -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/SAConcurrency/SAConcurrencyMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/SAConcurrency/SAConcurrencyMain.swift -------------------------------------------------------------------------------- /Tests/sample-pkg/Sources/StdLib/FILE.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/Tests/sample-pkg/Sources/StdLib/FILE.swift -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.0.78 2 | -------------------------------------------------------------------------------- /lib/Archs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Archs.js -------------------------------------------------------------------------------- /lib/Archs/Arch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Archs/Arch.js -------------------------------------------------------------------------------- /lib/Archs/Arm64Arch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Archs/Arm64Arch.js -------------------------------------------------------------------------------- /lib/Archs/ArmArch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Archs/ArmArch.js -------------------------------------------------------------------------------- /lib/Archs/HostArch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Archs/HostArch.js -------------------------------------------------------------------------------- /lib/Archs/x86Arch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Archs/x86Arch.js -------------------------------------------------------------------------------- /lib/Archs/x86_64Arch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Archs/x86_64Arch.js -------------------------------------------------------------------------------- /lib/Builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builder.js -------------------------------------------------------------------------------- /lib/Builders/CMarkBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/CMarkBuilder.js -------------------------------------------------------------------------------- /lib/Builders/CURLBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/CURLBuilder.js -------------------------------------------------------------------------------- /lib/Builders/DispatchBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/DispatchBuilder.js -------------------------------------------------------------------------------- /lib/Builders/FoundationBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/FoundationBuilder.js -------------------------------------------------------------------------------- /lib/Builders/ICUBaseBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/ICUBaseBuilder.js -------------------------------------------------------------------------------- /lib/Builders/ICUBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/ICUBuilder.js -------------------------------------------------------------------------------- /lib/Builders/ICUHostBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/ICUHostBuilder.js -------------------------------------------------------------------------------- /lib/Builders/LLBBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/LLBBuilder.js -------------------------------------------------------------------------------- /lib/Builders/LLVMBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/LLVMBuilder.js -------------------------------------------------------------------------------- /lib/Builders/SAPBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/SAPBuilder.js -------------------------------------------------------------------------------- /lib/Builders/SPMBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/SPMBuilder.js -------------------------------------------------------------------------------- /lib/Builders/SSLBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/SSLBuilder.js -------------------------------------------------------------------------------- /lib/Builders/SwiftBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/SwiftBuilder.js -------------------------------------------------------------------------------- /lib/Builders/SwiftCryptoBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/SwiftCryptoBuilder.js -------------------------------------------------------------------------------- /lib/Builders/SwiftDriverBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/SwiftDriverBuilder.js -------------------------------------------------------------------------------- /lib/Builders/SwiftStdLibBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/SwiftStdLibBuilder.js -------------------------------------------------------------------------------- /lib/Builders/SwiftTSCBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/SwiftTSCBuilder.js -------------------------------------------------------------------------------- /lib/Builders/XMLBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/XMLBuilder.js -------------------------------------------------------------------------------- /lib/Builders/YAMSBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Builders/YAMSBuilder.js -------------------------------------------------------------------------------- /lib/Components.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components.js -------------------------------------------------------------------------------- /lib/Components/CMarkComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/CMarkComponent.js -------------------------------------------------------------------------------- /lib/Components/CURLComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/CURLComponent.js -------------------------------------------------------------------------------- /lib/Components/Component.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/Component.js -------------------------------------------------------------------------------- /lib/Components/DispatchComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/DispatchComponent.js -------------------------------------------------------------------------------- /lib/Components/FoundationComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/FoundationComponent.js -------------------------------------------------------------------------------- /lib/Components/ICUCompoment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/ICUCompoment.js -------------------------------------------------------------------------------- /lib/Components/LLBComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/LLBComponent.js -------------------------------------------------------------------------------- /lib/Components/LLVMComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/LLVMComponent.js -------------------------------------------------------------------------------- /lib/Components/SAPComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/SAPComponent.js -------------------------------------------------------------------------------- /lib/Components/SPMComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/SPMComponent.js -------------------------------------------------------------------------------- /lib/Components/SSLComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/SSLComponent.js -------------------------------------------------------------------------------- /lib/Components/SwiftComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/SwiftComponent.js -------------------------------------------------------------------------------- /lib/Components/SwiftCryptoComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/SwiftCryptoComponent.js -------------------------------------------------------------------------------- /lib/Components/SwiftDriverComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/SwiftDriverComponent.js -------------------------------------------------------------------------------- /lib/Components/SwiftStdLibComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/SwiftStdLibComponent.js -------------------------------------------------------------------------------- /lib/Components/SwiftTSCComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/SwiftTSCComponent.js -------------------------------------------------------------------------------- /lib/Components/XMLComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/XMLComponent.js -------------------------------------------------------------------------------- /lib/Components/YAMSComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Components/YAMSComponent.js -------------------------------------------------------------------------------- /lib/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Config.js -------------------------------------------------------------------------------- /lib/Folder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Folder.js -------------------------------------------------------------------------------- /lib/Git/Checkout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Git/Checkout.js -------------------------------------------------------------------------------- /lib/Git/Repo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Git/Repo.js -------------------------------------------------------------------------------- /lib/Git/Revision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Git/Revision.js -------------------------------------------------------------------------------- /lib/Installer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Installer.js -------------------------------------------------------------------------------- /lib/Location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Location.js -------------------------------------------------------------------------------- /lib/NDK.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/NDK.js -------------------------------------------------------------------------------- /lib/Paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Paths.js -------------------------------------------------------------------------------- /lib/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Settings.js -------------------------------------------------------------------------------- /lib/Tool.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/lib/Tool.js -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vgorloff/swift-everywhere-toolchain/HEAD/main.js --------------------------------------------------------------------------------