Skip to content

Instantly share code, notes, and snippets.

@tokuhirom
Created February 2, 2015 07:47
Show Gist options
  • Save tokuhirom/f9e97c6369c3dc98cb29 to your computer and use it in GitHub Desktop.
Save tokuhirom/f9e97c6369c3dc98cb29 to your computer and use it in GitHub Desktop.
rakudo-build
#!/bin/sh
set -x
set -e
WORK=$HOME/.rakudo-build/
PREFIX=$HOME/perl6
mkdir -p $PREFIX
mkdir -p $WORK
rm -rf $WORK/rakudo
git clone https://github.com/rakudo/rakudo.git $WORK/rakudo
cd $WORK/rakudo
perl Configure.pl --prefix=$PREFIX --backends=moar --gen-moar --gen-nqp
make && make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment