diff options
author | 2022-07-14 10:49:49 -0700 | |
---|---|---|
committer | 2022-07-14 13:49:49 -0400 | |
commit | 3b5ad05627fa195f3102816b02849e009ba90ec6 (patch) | |
tree | 39c2aac4b534c7ffb15a31a201e93cf069db6dd9 | |
parent | 1ea4dc13f02819066f3dd28e8703f5c2f6f85abc (diff) | |
download | bun-3b5ad05627fa195f3102816b02849e009ba90ec6.tar.gz bun-3b5ad05627fa195f3102816b02849e009ba90ec6.tar.zst bun-3b5ad05627fa195f3102816b02849e009ba90ec6.zip |
docs: remove emulating cpu section (#714)
-rw-r--r-- | README.md | 22 |
1 files changed, 0 insertions, 22 deletions
@@ -903,28 +903,6 @@ If you’re interested in adding a framework integration, please reach out. Ther ## Troubleshooting -### Illegal Instruction (Core Dumped) -Bun currently only works on CPUs supporting the AVX2 instruction set. To run on older CPUs this can be emulated using Intel SDE, however bun won't be as fast as it would be when running on CPUs with AVX2 support. -If you get this error while bun is initializing, You probably need to wrap the bun executable with intel-sde - 1. Install intel-sde - - Arch Linux: `yay -S intel-sde` - - Other Distros: -``` -# wget https://downloadmirror.intel.com/732268/sde-external-9.7.0-2022-05-09-lin.tar.xz -O /tmp/intel-sde.tar.xz -# cd /tmp -# tar -xf intel-sde.tar.xz -# cd sde-external* -# mkdir /usr/local/bin -p -# cp sde64 /usr/local/bin/sde -# cp -r intel64 /usr/local/bin/ -# cp -r misc /usr/local/bin/ -``` - 2. Add alias to bashrc -``` -$ echo "alias bun='sde -chip-check-disable -- bun'" >> ~/.bashrc -``` -You can replace `.bashrc` with `.zshrc` if you use zsh instead of bash - ### bun not running on an M1 (or Apple Silicon) If you see a message like this |