Actually, that was pretty easy.  Good work, guys.

What was giving me a problem was that you've got some 32-bit .o files in the 
tarball, so linking fails.  I just added a step to delete them and it works 
fine:


rm -rf /tmp/quackle-0.96

cd /tmp

tar -zxvf /home/gvc/Desktop/quackle-0.96-source.tar.gz

cd /tmp/quackle-0.96

#### Delete extraneous 32-bit object files
find . -name *.o | xargs rm
scons r=1

# scons d=1 # to build with debug symbols.

cd quackleio
qmake

make
cd ../quacker

qmake
make
./quacker


G. Vincent Castellano wrote:
> Jason Katz-Brown wrote:
>> I've never tried compiling Quackle on a 64-bit machine :-/
> 
> Then I get to go first.  Excellent!
> --gvc
> 
> ------------------------------------
> 
> Yahoo! Groups Links
> 
> 
> 

Reply via email to