szabgab / perl6-in-perl5
- Source
- Commits
- Network (0)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
commit 859d79bc06c059bdba41a5b40cb9e0c93dbffb7b
tree e450ebffd36fd76191e88239f12c707f1bb1be97
parent 28bddb1a0e8b1bc20b8d84d32d008791b0ab43fa
tree e450ebffd36fd76191e88239f12c707f1bb1be97
parent 28bddb1a0e8b1bc20b8d84d32d008791b0ab43fa
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
Changes | ||
| |
MANIFEST.SKIP | ||
| |
Makefile.PL | ||
| |
README | ||
| |
lib/ | ||
| |
t/ |
README
Perl 6 in Perl 5 After building Parrot and Rakudo I set the RAKUDO_DIR environment variable to point to the directory where Rakudo was checked out. I also set the PARROT_DIR environment variable to point to the directory where Parrot was checked out (in the currently standard setup that would be $RAKUDO_DIR/parrot). Then I had to build Parrot::Embed cd $PARROT_DIR/ext/Parrot-Embed perl Build.PL perl Build perl Build test Then I set LD_LIBRARY_PATH to point to $PARROT_DIR/blib/lib/ This is what I have now in .bashrc export RAKUDO_DIR=$HOME/work/rakudo export PARROT_DIR=$RAKUDO_DIR/parrot export LD_LIBRARY_PATH=$PARROT_DIR/blib/lib/ Other than that perl Makefile.PL make make test make install

