diff options
author | 2023-04-21 00:03:12 -0300 | |
---|---|---|
committer | 2023-04-20 20:03:12 -0700 | |
commit | b609f9be2894f5237a0d058eaea884f330f02f77 (patch) | |
tree | fd19aeaa3212c76668d5d66d4583b703e972c5ec | |
parent | b473a0022dabb154e331217ab5f95313d5e5687e (diff) | |
download | bun-b609f9be2894f5237a0d058eaea884f330f02f77.tar.gz bun-b609f9be2894f5237a0d058eaea884f330f02f77.tar.zst bun-b609f9be2894f5237a0d058eaea884f330f02f77.zip |
chore(docs): add xcode runtime install to docs (#2706)
Diffstat (limited to '')
-rw-r--r-- | docs/project/development.md | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/project/development.md b/docs/project/development.md index 7d320092d..91aff13f5 100644 --- a/docs/project/development.md +++ b/docs/project/development.md @@ -215,3 +215,11 @@ Check to see the command installed webkit, and you can manully look for `node_mo # this should reveal two directories. if not, something went wrong $ echo node_modules/bun-webkit* ``` + +### macOS `library not found for -lSystem` + +If you see this error when compiling, run: + +```bash +$ xcode-select --install +``` |