PDA

View Full Version : So close! (yet so far...)



Lokust
01-25-2002, 11:14 PM
I have been following the instructions and everything has been going great.

i am on the ./configure step for showeq. It keeps dying saying it can't find libEQ.a. I have verified that only one copy exists (and its the current one). It is currently in /usr/local/lib

Do I need to update a path somewhere to include that directory?

also, my libEQ.a file is only 58 bytes.. is that correct?

thanks for any info!

high_jeeves
01-26-2002, 12:01 AM
Your libEQ is not valid if it is only 58 bytes. Download one from a location specified in the README.libEQ in your download directory. Do an "md5sum libEQ.a" on the file you download, and make sure the output is the same at the md5sum listed on the top of the front page for these forums. That way you can guarantee that you have the version the developers have released for use with ShowEQ.

-Jeeves

fryfrog
01-26-2002, 12:15 AM
-rw-r--r-- 1 root root 6786 Jan 22 20:17 libEQ.a

no, that is not the right size for the libEQ.a. also, i'm not sure if /usr/local/lib is part of the library search path. i put mine in /usr/lib personally.

NoLiving
01-26-2002, 07:52 AM
You need to make sure that gcc is symbolicly linked to gcc-3.0 and cpp is symboliclylinked to cpp-3.0 or ./configure will fail on libEQ.a

cd /usr/bin
rm gcc
rm cpp
ln -s gcc-3.0 gcc
ln -s cpp-3.0 cpp

Make sure you have cpp3 and gcc3 installed, which you should otherwise you shouldn't have gotten this far.

S_B_R
01-26-2002, 09:00 AM
Originally posted by NoLiving
You need to make sure that gcc is symbolicly linked to gcc-3.0 and cpp is symboliclylinked to cpp-3.0 or ./configure will fail on libEQ.a

cd /usr/bin
rm gcc
rm cpp
ln -s gcc-3.0 gcc
ln -s cpp-3.0 cpp

Make sure you have cpp3 and gcc3 installed, which you should otherwise you shouldn't have gotten this far.

Um if his libEQ.a is only 58 bytes that definately one problem. Lets take this one step at a time, it's easier to follow that way.

NoLiving
01-26-2002, 05:28 PM
-rw-r--r-- 1 root root 6786 Jan 22 20:17 libEQ.a

S_B_R
01-26-2002, 08:34 PM
^^^^^^^^^^^^^^^^^^^^^^^
yeah Fryfrog already posted that... But Lokust said his libEQ.a was 58 bytes ;)