Skip to content

Instantly share code, notes, and snippets.

@FROGGS
Created October 25, 2014 11:08
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 FROGGS/850dee443aeedc6f2a58 to your computer and use it in GitHub Desktop.
Save FROGGS/850dee443aeedc6f2a58 to your computer and use it in GitHub Desktop.
froggs@TL02L-R8RXTCW-linux:~/dev$ cat make_moar
#!/bin/bash
cd ~/dev/MoarVM
make realclean
perl Configure.pl --prefix=/home/froggs/dev/nqp/install --optimize=1 --debug=3 && make install
libatomic_ops && make install
froggs@TL02L-R8RXTCW-linux:~/dev$ cat make_nqp
#!/bin/bash
cd ~/dev/nqp
make clean
perl Configure.pl --backends=moar --prefix=/home/froggs/dev/nqp/install && make install
froggs@TL02L-R8RXTCW-linux:~/dev$ cat make_rakudo
#!/bin/bash
cd ~/dev/rakudo
make clean
perl Configure.pl --backends=moar --prefix=/home/froggs/dev/nqp/install && make install
froggs@TL02L-R8RXTCW-linux:~/dev$ cat make_all
#!/bin/bash
~/dev/make_moar && ~/dev/make_nqp && ~/dev/make_rakudo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment