Gabor Szabo wrote:
On Ubuntu it was quite straigt forward, I think this is everything I
needed:
sudo apt-get install subversion
sudo apt-get install ghc6
Given that, in the above, you installed subversion and ghc6 for all
users ...
[snip]
# To compile Parrot
svn co https://svn.perl.org/parrot/trunk parrot
cd parrot
perl Configure.pl --prefix=$HOME/parrot --cc=cc --cxx=CC --link=cc --ld=cc
make
make test
make install
# added the following to ~/.bashrc and ran source ~/.bashrc
export PATH=$HOME/parrot/bin:$PATH
export LD_LIBRARY_PATH=$HOME/parrot/lib/
export PARROT_PATH=$HOME/work/parrot
... is there some reason why you chose to install parrot only under your
home directory?
jimk