Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace cloning via ssh with https #13

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
6 changes: 3 additions & 3 deletions scripts/get_llvm_src_tree.sh
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
#!/bin/bash -e

#get LLVM
git clone git@github.com:llvm-mirror/llvm.git
git clone https://github.com/llvm-mirror/llvm.git
pushd llvm
git reset --hard 8f4f26c9c7fec12eb039be6b20313a51417c97bb
popd

#get clang
git clone git@github.com:llvm-mirror/clang.git
git clone https://github.com/llvm-mirror/clang.git
pushd clang
git reset --hard d59a142ef50bf041797143db71d2d4777fd32d27
popd

#get compiler-rt
git clone git@github.com:llvm-mirror/compiler-rt.git
git clone https://github.com/llvm-mirror/compiler-rt.git
pushd compiler-rt
git reset --hard 961e78720a32929d7e4fc13a72d7266d59672c42
popd
Expand Down