From ccc765a2af99c54d35cdd810ffc263a8cd74781a Mon Sep 17 00:00:00 2001 From: Hugh Perkins Date: Sun, 25 Jun 2017 10:03:01 +0100 Subject: [PATCH 1/2] fix flaky links to llvm git, and gettingstarted.rts --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2b2b9c8e7a..8daa8fc70c 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ It is also available directly from the LLVM svn server: Or could be cloned from LLVM git repository: ```bash - git clone http://llvm.org/git/llvm.git llvm + git clone https://github.com/llvm-mirror/llvm.git llvm cd llvm git checkout --track -b release_32 remotes/origin/release_32 ``` @@ -44,7 +44,7 @@ LLVM build system to automatically recognize it and build it along with LLVM. Step 2: Configure and Build LLVM -------------------------------- -Configure and build your copy of LLVM (see **$LLVM_SRC_ROOT/GettingStarted.html** for more information). +Configure and build your copy of LLVM (see **https://github.com/llvm-mirror/llvm/blob/release_32/docs/GettingStarted.rst** for more information). Assuming you installed clang at **$LLVM_SRC_ROOT/tools/clang** then Clang will automatically be built with LLVM. Otherwise, run `make` in the Clang source From f96b92279fe40fdb1f1c2b27072c3123ddb6ac07 Mon Sep 17 00:00:00 2001 From: Hugh Perkins Date: Sun, 25 Jun 2017 11:08:59 +0100 Subject: [PATCH 2/2] update llvm link to new url --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 8daa8fc70c..d10054ad70 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ It is also available directly from the LLVM svn server: Or could be cloned from LLVM git repository: ```bash - git clone https://github.com/llvm-mirror/llvm.git llvm + git clone https://git.llvm.org/git/llvm.git/ llvm cd llvm git checkout --track -b release_32 remotes/origin/release_32 ```