Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ mkdir -p "$WORKING_DIR"

cd "$WORKING_DIR"
if [ ! -d "$WORKING_DIR/llvm-project" ]; then
git clone https://github.com/apple/llvm-project.git
git clone --depth 1 --branch "$LLVM_BRANCH" https://github.com/apple/llvm-project.git
fi
cd "$WORKING_DIR/llvm-project"
git reset --hard
Expand Down
7 changes: 3 additions & 4 deletions config.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,13 @@
# returned by the command below:
# $ xcrun -sdk iphoneos swiftc --version

LLVM_BRANCH="tags/swift-5.3.2-RELEASE"
LLVM_BRANCH="swift-5.3.2-RELEASE"

# 2. Select the best branch, tag or commit hash from https://github.com/rust-lang/rust

RUST_BRANCH="a8486b64b" # nightly-2021-02-25
RUST_BRANCH="003d8d3f56848b6f3833340e859b089a09aea36a" # 2021-10-05

# 3. Select a name for the toolchain you want to install as. The toolchain will be installed
# under $HOME/.rustup/toolchains/rust-$RUST_TOOLCHAIN

RUST_TOOLCHAIN="ios-arm64-nightly-2021-02-25"

RUST_TOOLCHAIN="ios-arm64-nightly-2021-10-05"