Will Coleda wrote:
Here's my shell script for running config:
#!/bin/sh
CC="ccache gcc-4.0"
CX="ccache g++-4.0"
/usr/bin/perl Configure.pl --cc="$CC" --cxx="$CX" --link="$CX" --
ld="$CX" --without-icu $@
Following further discussion with Coke on #parrot, I ran this slight
variation on the above:
#!/bin/sh
CC="/usr/bin/gcc-3.3"
CX="/usr/bin/g++-3.3"
/usr/local/bin/perl Configure.pl --cc="$CC" --cxx="$CX" --link="$CX"
--ld="$CX" --without-icu --without-gmp $@
It worked! Which puts me back in the Parrot game.
You can see the resulting Parrot configuration at
http://nopaste.snit.ch:8001/8999
And it appears that yesterday's Bug Day resulted in a lot of cage
cleaning, because the number of individual tests that failed when I ran
'make test' dropped from 62 to 1: http://nopaste.snit.ch:8001/9000
Thank you very much!
kid51