summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRon Olson <tachoknight@gmail.com>2018-01-17 19:20:08 -0600
committerRon Olson <tachoknight@gmail.com>2018-01-17 19:20:08 -0600
commit67b9b5c043636b91b81ad1265188755ea6ee3855 (patch)
treeec8448a04cf4b2359eab72b9761127cac45660e2
parenta1c0d95331b983b24a7ea2ebda2e820e31b4d6fb (diff)
downloadswift-lang-67b9b5c043636b91b81ad1265188755ea6ee3855.tar.gz
swift-lang-67b9b5c043636b91b81ad1265188755ea6ee3855.tar.xz
swift-lang-67b9b5c043636b91b81ad1265188755ea6ee3855.zip
Added source and shell script
-rw-r--r--apple-swift.zipbin0 -> 183111149 bytes
-rwxr-xr-xget-sources.sh23
2 files changed, 23 insertions, 0 deletions
diff --git a/apple-swift.zip b/apple-swift.zip
new file mode 100644
index 0000000..69d7698
--- /dev/null
+++ b/apple-swift.zip
Binary files differ
diff --git a/get-sources.sh b/get-sources.sh
new file mode 100755
index 0000000..1de40de
--- /dev/null
+++ b/get-sources.sh
@@ -0,0 +1,23 @@
+#!/bin/bash
+
+# These variables refer to the version of Swift you
+# want to build, and must match what Apple has
+# made available at https://github.com/apple/swift/releases
+# (but note *not* to prepend "swift-" to it)
+TAG=DEVELOPMENT-SNAPSHOT-2018-01-15-a
+
+wget https://github.com/apple/swift/archive/swift-${TAG}.tar.gz -O swift.tar.gz
+wget https://github.com/apple/swift-compiler-rt/archive/swift-${TAG}.tar.gz -O swift-compiler-rt.tar.gz
+wget https://github.com/apple/swift-corelibs-libdispatch/archive/swift-${TAG}.tar.gz -O corelibs-libdispatch.tar.gz
+wget https://github.com/apple/swift-corelibs-foundation/archive/swift-${TAG}.tar.gz -O corelibs-foundation.tar.gz
+wget https://github.com/apple/swift-integration-tests/archive/swift-${TAG}.tar.gz -O swift-integration-tests.tar.gz
+wget https://github.com/apple/swift-corelibs-xctest/archive/swift-${TAG}.tar.gz -O corelibs-xctest.tar.gz
+wget https://github.com/apple/swift-clang/archive/swift-${TAG}.tar.gz -O clang.tar.gz
+wget https://github.com/apple/swift-package-manager/archive/swift-${TAG}.tar.gz -O package-manager.tar.gz
+wget https://github.com/apple/swift-lldb/archive/swift-${TAG}.tar.gz -O lldb.tar.gz
+wget https://github.com/apple/swift-llvm/archive/swift-${TAG}.tar.gz -O llvm.tar.gz
+wget https://github.com/apple/swift-llbuild/archive/swift-${TAG}.tar.gz -O llbuild.tar.gz
+wget https://github.com/apple/swift-cmark/archive/swift-${TAG}.tar.gz -O cmark.tar.gz
+wget https://github.com/apple/swift-xcode-playground-support/archive/swift-${TAG}.tar.gz -O swift-xcode-playground-support.tar.gz
+# Dunno if we need this as it's already a dependency....
+#wget https://github.com/ninja-build/ninja/archive/v1.7.2.tar.gz -O ninja.tar.gz