aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2019-10-02 02:11:46 -0400
committerAndrew Kelley <andrew@ziglang.org>2019-10-02 02:11:46 -0400
commit6f10e3fda6ca3ef2846c87b149d308fa461fdbb0 (patch)
treeb2561bd5ca0e5a67e02cbee176e6ee972f2945cc /README.md
parentf84086132f1a60ce4c46af1720eccb244cc13688 (diff)
downloadzig-6f10e3fda6ca3ef2846c87b149d308fa461fdbb0.tar.gz
zig-6f10e3fda6ca3ef2846c87b149d308fa461fdbb0.zip
llvm 9.0.0 => llvm 10.0.0
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index d5199a1fa8..f2745e6110 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Note that you can
* cmake >= 2.8.5
* gcc >= 5.0.0 or clang >= 3.6.0
- * LLVM, Clang, LLD development libraries == 9.x, compiled with the same gcc or clang version above
+ * LLVM, Clang, LLD development libraries == 10.x, compiled with the same gcc or clang version above
- Use the system package manager, or [build from source](https://github.com/ziglang/zig/wiki/How-to-build-LLVM,-libclang,-and-liblld-from-source#posix).
##### Windows
@@ -37,7 +37,7 @@ Note that you can
- 2015 (version 14)
- 2017 (version 15.8)
- 2019 (version 16)
- * LLVM, Clang, LLD development libraries == 9.x
+ * LLVM, Clang, LLD development libraries == 10.x
- Use the [pre-built binaries](https://github.com/ziglang/zig/wiki/Building-Zig-on-Windows) or [build from source](https://github.com/ziglang/zig/wiki/How-to-build-LLVM,-libclang,-and-liblld-from-source#windows).
#### Instructions
@@ -54,8 +54,8 @@ make install
##### MacOS
```
-brew install cmake llvm@9
-brew outdated llvm@9 || brew upgrade llvm@9
+brew install cmake llvm@10
+brew outdated llvm@10 || brew upgrade llvm@10
mkdir build
cd build
cmake .. -DCMAKE_PREFIX_PATH=$(brew --prefix llvm)