Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Use more cores
  • Loading branch information
coke committed Oct 17, 2014
1 parent a63ca00 commit 135314e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bin/rakudo.jvm.sh
Expand Up @@ -9,7 +9,7 @@ git clone repos/nqp.git rakudo.jvm/nqp
git clone repos/roast.git rakudo.jvm/t/spec
cd rakudo.jvm
perl Configure.pl --backends=jvm --gen-nqp
make all
make -j all

# uninstalled rakudo doesn't know how to find Test.pm
# ... or any other modules
Expand Down
2 changes: 1 addition & 1 deletion bin/rakudo.moar-jit.sh
Expand Up @@ -10,7 +10,7 @@ git clone repos/MoarVM.git rakudo.moar-jit/nqp/MoarVM
git clone repos/roast.git rakudo.moar-jit/t/spec
cd rakudo.moar-jit
perl Configure.pl --gen-moar --gen-nqp --backends=moar
make all
make -j all

# uninstalled rakudo doesn't know how to find Test.pm
# ... or any other modules
Expand Down
2 changes: 1 addition & 1 deletion bin/rakudo.moar.sh
Expand Up @@ -10,7 +10,7 @@ git clone repos/MoarVM.git rakudo.moar/nqp/MoarVM
git clone repos/roast.git rakudo.moar/t/spec
cd rakudo.moar
perl Configure.pl --gen-moar --gen-nqp --backends=moar --moar-option=--no-jit
make all
make -j all

# uninstalled rakudo doesn't know how to find Test.pm
# ... or any other modules
Expand Down
4 changes: 2 additions & 2 deletions bin/rakudo.parrot.sh
Expand Up @@ -9,8 +9,8 @@ git clone repos/nqp.git rakudo.parrot/nqp
git clone repos/parrot.git rakudo.parrot/parrot
git clone repos/roast.git rakudo.parrot/t/spec
cd rakudo.parrot
perl Configure.pl --backends=parrot --gen-parrot --parrot-make-option='--jobs=8'
make all
perl Configure.pl --backends=parrot --gen-parrot --parrot-make-option='-j'
make -j all

# uninstalled rakudo doesn't know how to find Test.pm
# ... or any other modules
Expand Down

0 comments on commit 135314e

Please sign in to comment.