Skip to content

Instantly share code, notes, and snippets.

@zoffixznet
Created March 25, 2018 23:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zoffixznet/6a869b2dcfe19cbc5b44351887889ce9 to your computer and use it in GitHub Desktop.
Save zoffixznet/6a869b2dcfe19cbc5b44351887889ce9 to your computer and use it in GitHub Desktop.
cd $(mktemp -d)
git clone https://github.com/MoarVM/MoarVM
git clone https://github.com/perl6/nqp
git clone https://github.com/rakudo/rakudo
RAK_INSTALL_DIR=$(pwd)/install
mkdir "$RAK_INSTALL_DIR"
cd MoarVM
perl Configure.pl --prefix="$RAK_INSTALL_DIR"
make -j24
make install
cd ../nqp
perl Configure.pl --prefix="$RAK_INSTALL_DIR" --backends=moar
make -j24
make test
make install
cd ../rakudo
perl Configure.pl --prefix="$RAK_INSTALL_DIR" --backends=moar
make -j24
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment