Skip to content

Commit

Permalink
add install_engines.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
doehyunbaek committed Feb 8, 2024
1 parent 36be043 commit 6db62a7
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions install_engines.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

# Install v8, jsc, sm
npm install jsvu -g
jsvu
jsvu javascriptcore@271958
ln -s ~/.jsvu/bin/javascriptcore-271958 ~/.jsvu/bin/jsc
echo 'export PATH="~/.jsvu/bin:${PATH}"' >> ~/.profile

# Install wasmtime
echo "Installing wasmtime..."
curl https://wasmtime.dev/install.sh -sSf | bash

# Install wasmer
echo "Installing wasmer..."
curl https://get.wasmer.io -sSfL | sh

echo "Installation completed."

0 comments on commit 6db62a7

Please sign in to comment.