-
-
Save FROGGS/850dee443aeedc6f2a58 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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