Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
minor fixups
  • Loading branch information
coke committed Jan 10, 2013
1 parent eb3d723 commit de06f3e
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
5 changes: 4 additions & 1 deletion bin/niecza.sh
Expand Up @@ -5,6 +5,9 @@ rm -rf niecza
# remove stale compiled file slipping through the cracks
rm -r ~/.local/share/NieczaModuleCache

# default to sysperl
PATH=/usr/local/bin:$PATH

git clone git://github.com/sorear/niecza.git
cd niecza
ln -s ../../roast t/spec
Expand All @@ -13,4 +16,4 @@ echo 'exec "ulimit -t 15; ulimit -v 1260720; nice -20 mono ./run/Niecza.exe @ARG
chmod a+x ./perl6
make all
mono ./run/Niecza.exe -e "say 'BUILD SETTING'"
/home/coke/perl5/perlbrew/perls/perl-5.14.2/bin/perl t/spec/test_summary niecza 2>&1 | tee ../niecza_summary.out
perl t/spec/test_summary niecza 2>&1 | tee ../niecza_summary.out
8 changes: 6 additions & 2 deletions bin/pugs.sh
Expand Up @@ -3,7 +3,8 @@
LANG=en_US.UTF-8
export LANG

perlbrew off # Building pugs doesn't like our perlbrew.
# Building pugs doesn't like our perlbrew, default to sysperl
PATH=/usr/local/bin:$PATH

#
# Warning - this doesn't handle the case where deps change
Expand All @@ -15,4 +16,7 @@ git clone git://github.com/perl6/Pugs.hs.git
cd Pugs.hs
ln -s ../../roast t/spec
(cd Pugs && make)
/home/coke/perl5/perlbrew/perls/perl-5.14.2/bin/perl t/spec/test_summary pugs 2>&1 | tee ../pugs_summary.out
echo "#!/usr/bin/env perl" > perl6
echo 'exec "ulimit -t 15; ulimit -v 1260720; nice -20 ./Pugs/pugs @ARGV"' >> perl6
chmod a+x ./perl6
perl t/spec/test_summary pugs 2>&1 | tee ../pugs_summary.out
7 changes: 5 additions & 2 deletions bin/rakudo.sh
@@ -1,14 +1,17 @@
#!/bin/sh

# default to sysperl
PATH=/usr/local/bin:$PATH

rm -rf rakudo
git clone git://github.com/rakudo/rakudo.git
cd rakudo
ln -s ../../roast t/spec
/home/coke/perl5/perlbrew/perls/perl-5.14.2/bin/perl Configure.pl --gen-parrot
perl Configure.pl --gen-parrot
make all

# uninstalled rakudo doesn't know how to find Test.pm
# ... or any other modules
export PERL6LIB=`pwd`/lib:.

/home/coke/perl5/perlbrew/perls/perl-5.14.2/bin/perl t/spec/test_summary rakudo 2>&1 | tee ../rakudo_summary.out
perl t/spec/test_summary rakudo 2>&1 | tee ../rakudo_summary.out
2 changes: 1 addition & 1 deletion cull
@@ -1,4 +1,4 @@
#!/home/coke/perl5/perlbrew/perls/perl-5.14.2/bin/perl
#!/home/coke/perl5/perlbrew/perls/perl-5.16.1/bin/perl

use Modern::Perl;
use Text::CSV;
Expand Down

0 comments on commit de06f3e

Please sign in to comment.