diff options
author | 2023-09-14 21:26:37 -0700 | |
---|---|---|
committer | 2023-09-14 21:26:37 -0700 | |
commit | ced69d38180e963da1206f9932db76666cec9f72 (patch) | |
tree | a4c4462ff8747adc7d092891b1c299dfbb0ecc4a /docs/project/development.md | |
parent | b262b0153a2d9667fcb47a970e8027d3b54f8a0a (diff) | |
download | bun-ced69d38180e963da1206f9932db76666cec9f72.tar.gz bun-ced69d38180e963da1206f9932db76666cec9f72.tar.zst bun-ced69d38180e963da1206f9932db76666cec9f72.zip |
async-ify all node:fs functions (#5360)
* async all node:fs functions
* draw the rest of the owl
* LLVM & Clang 16
---------
Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
Diffstat (limited to 'docs/project/development.md')
-rw-r--r-- | docs/project/development.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/project/development.md b/docs/project/development.md index ce9ef1ded..f2903e024 100644 --- a/docs/project/development.md +++ b/docs/project/development.md @@ -32,12 +32,12 @@ $ proto install bun ## Install LLVM -Bun requires LLVM 15 and Clang 15 (`clang` is part of LLVM). This version requirement is to match WebKit (precompiled), as mismatching versions will cause memory allocation failures at runtime. In most cases, you can install LLVM through your system package manager: +Bun requires LLVM 16 and Clang 16 (`clang` is part of LLVM). This version requirement is to match WebKit (precompiled), as mismatching versions will cause memory allocation failures at runtime. In most cases, you can install LLVM through your system package manager: {% codetabs %} ```bash#macOS (Homebrew) -$ brew install llvm@15 +$ brew install llvm@16 ``` ```bash#Ubuntu/Debian @@ -54,10 +54,10 @@ $ sudo pacman -S llvm15 clang15 lld 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). -Make sure LLVM 15 is in your path: +Make sure LLVM 16 is in your path: ```bash -$ which clang-15 +$ which clang-16 ``` If not, run this to manually link it: @@ -66,9 +66,9 @@ If not, run this to manually link it: ```bash#macOS (Homebrew) # use fish_add_path if you're using fish -$ export PATH="$PATH:$(brew --prefix llvm@15)/bin" -$ export LDFLAGS="$LDFLAGS -L$(brew --prefix llvm@15)/lib" -$ export CPPFLAGS="$CPPFLAGS -I$(brew --prefix llvm@15)/include" +$ export PATH="$PATH:$(brew --prefix llvm@16)/bin" +$ export LDFLAGS="$LDFLAGS -L$(brew --prefix llvm@16)/lib" +$ export CPPFLAGS="$CPPFLAGS -I$(brew --prefix llvm@16)/include" ``` ```bash#Arch |