aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar otterDeveloper <35275717+otterDeveloper@users.noreply.github.com> 2023-10-09 12:52:16 -0600
committerGravatar GitHub <noreply@github.com> 2023-10-09 11:52:16 -0700
commit0a8aab6b23c339a2d865d38076ea48722dc9ce9c (patch)
tree7d9494b03cfa4e4471d50158e74e83c970f2611d
parent6a73f2b1e79c4e3f40b171b2d557cded25b08e59 (diff)
downloadbun-0a8aab6b23c339a2d865d38076ea48722dc9ce9c.tar.gz
bun-0a8aab6b23c339a2d865d38076ea48722dc9ce9c.tar.zst
bun-0a8aab6b23c339a2d865d38076ea48722dc9ce9c.zip
Add Fedora build instructions to development.md (#6359)
Diffstat (limited to '')
-rw-r--r--docs/project/development.md10
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/project/development.md b/docs/project/development.md
index 6963df434..f2d359209 100644
--- a/docs/project/development.md
+++ b/docs/project/development.md
@@ -49,6 +49,12 @@ $ wget https://apt.llvm.org/llvm.sh -O - | sudo bash -s -- 16 all
$ sudo pacman -S llvm clang lld
```
+```bash#Fedora
+$ sudo dnf install 'dnf-command(copr)'
+$ sudo dnf copr enable -y @fedora-llvm-team/llvm-snapshots
+$ sudo dnf install llvm clang 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-16.0.6).
@@ -98,6 +104,10 @@ $ sudo apt install cargo ccache cmake git golang libtool ninja-build pkg-config
$ sudo pacman -S base-devel ccache cmake esbuild git go libiconv libtool make ninja pkg-config python rust sed unzip
```
+```bash#Fedora
+$ sudo dnf install cargo ccache cmake git golang libtool ninja-build pkg-config rustc golang-github-evanw-esbuild libatomic-static libstdc++-static sed unzip
+```
+
{% /codetabs %}
{% details summary="Ubuntu — Unable to locate package esbuild" %}