Hello

I want to compile pound. When I ran ./configure it was telling me there is no c compiler on the system.
I found on a GNU Page a short installation guide for gcc ( http://gcc.gnu.org/ml/fortran/2006-06/msg00018.html)
so I installed gcc 4.3.0 on this fedora machine (or did I not?).

I ran:
export PATH=$PATH:/gcc/irun/bin
export LD_LIBRARY_PATH=/gcc/irun/lib

Mentioned is to set the LD_LIBRARY_FLAG. I actually have no clue how. Another export command maybe, but what parameter would fit?

Result: ./configure now finds gcc but gives me the following output:
checking for gcc... gcc
checking for C compiler default output file name... configure: error: C compiler cannot create executables
See `config.log' for more details.

in the config.log I think I can see the problem, the >&5 var has no value, hardcoding it just gives me another error message.

Logfile (uncomplete):

configure:2059: gcc -V >&5
gcc: '-V' option must have argument
configure:2062: $? = 1
configure:2085: checking for C compiler default output file name
configure:2112: gcc    conftest.c  >&5
/usr/bin/ld: crt1.o: No such file: No such file or directory
collect2: ld returned 1 exit status
configure:2115: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "pound"
| #define PACKAGE_TARNAME "pound"
| #define PACKAGE_VERSION "2.3"
| #define PACKAGE_STRING "pound 2.3"
| #define PACKAGE_BUGREPORT " roseg@apsis.ch "
| /* end confdefs.h.  */


Thanks for help
Martin