aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Sony AK <sony@sony-ak.com> 2023-09-16 10:28:52 +0700
committerGravatar GitHub <noreply@github.com> 2023-09-15 20:28:52 -0700
commit7f2e40af46bdd21984b9df1695895c7f43aba482 (patch)
tree574cd83ad85e8af22f32dd1302e52492345d0076
parentd976b22c95383c2623b7604ffef0563e5d53ca24 (diff)
downloadbun-7f2e40af46bdd21984b9df1695895c7f43aba482.tar.gz
bun-7f2e40af46bdd21984b9df1695895c7f43aba482.tar.zst
bun-7f2e40af46bdd21984b9df1695895c7f43aba482.zip
Update development.md (#5531)
Fix to version 16 on docs
-rw-r--r--docs/project/development.md12
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/project/development.md b/docs/project/development.md
index f2903e024..cd21ea4fb 100644
--- a/docs/project/development.md
+++ b/docs/project/development.md
@@ -42,17 +42,17 @@ $ brew install llvm@16
```bash#Ubuntu/Debian
$ # LLVM has an automatic installation script that is compatible with all versions of Ubuntu
-$ wget https://apt.llvm.org/llvm.sh -O - | sudo bash -s -- 15 all
+$ wget https://apt.llvm.org/llvm.sh -O - | sudo bash -s -- 16 all
```
```bash#Arch
-$ sudo pacman -S llvm15 clang15 lld
+$ sudo pacman -S llvm16 clang16 lld
```
{% /codetabs %}
-If none of the above solutions apply, you will have to install it [manually](https://github.com/llvm/llvm-project/releases/tag/llvmorg-15.0.7).
+If none of the above solutions apply, you will have to install it [manually](https://github.com/llvm/llvm-project/releases/tag/llvmorg-16.0.6).
Make sure LLVM 16 is in your path:
@@ -73,9 +73,9 @@ $ export CPPFLAGS="$CPPFLAGS -I$(brew --prefix llvm@16)/include"
```bash#Arch
-$ export PATH="$PATH:/usr/lib/llvm15/bin"
-$ export LDFLAGS="$LDFLAGS -L/usr/lib/llvm15/lib"
-$ export CPPFLAGS="$CPPFLAGS -I/usr/lib/llvm15/include"
+$ export PATH="$PATH:/usr/lib/llvm16/bin"
+$ export LDFLAGS="$LDFLAGS -L/usr/lib/llvm16/lib"
+$ export CPPFLAGS="$CPPFLAGS -I/usr/lib/llvm16/include"
```