diff options
author | 2021-10-17 18:40:54 -0700 | |
---|---|---|
committer | 2021-10-17 18:40:54 -0700 | |
commit | 4f2c1cfe853dadced1f6508887d752dc671ae371 (patch) | |
tree | 208678cc17546c00505c5422409e40299754016d /README.md | |
parent | 6e16b3cf84040f5cecccbcb844fcdcac8adb84f7 (diff) | |
download | bun-4f2c1cfe853dadced1f6508887d752dc671ae371.tar.gz bun-4f2c1cfe853dadced1f6508887d752dc671ae371.tar.zst bun-4f2c1cfe853dadced1f6508887d752dc671ae371.zip |
Update README.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -426,6 +426,16 @@ For developing frameworks, you can also do `bun bun --use ./relative-path-to-fra If you're interested in adding a framework integration, please reach out. There's a lot here and it's not entirely documented yet. +# FAQ + +When running bun on an M1 (or Apple Silicon), if you see a message like this: + +> [1] 28447 killed bun create next ./test + +It most likely means you're running bun's x64 version on Apple Silicon. This happens if `node` (or, rather, `npm`) is running via Rosetta. Rosetta is unable to emulate AVX2 instructions, which Bun indirectly uses. + +The fix is to ensure you installed a version of Node built for Apple Silicon and then reinstall `bun-cli`. You can also try to directly install `npm install -g bun-cli-darwin-aarch64`. + # Reference ### `bun create` |