| The command:
which gcc
should show you if gcc is in your path.
I'm doubtful that this is the problem...
It looks like there is a problem with the configure script and ld. The output says that there is a problem with the flag -s so maybe you can look at the configure script and see where the -s comes from and remove it. A better approach would be to see if you can pass to the configure script options -- for instance you might be able to pass LDFLAG
./configure LDFLAG=-x
What can and can't be passed to configure will be in the documentation. Is there a README file that tells you about configure? |