* Thus wrote Nguyen, Long P (Mission Systems):
> any ideas with this install/config error?
> 
> [EMAIL PROTECTED] php-4.3.7]# ./configure --with-mysql=/usr/local/mysql
> creating cache ./config.cache
> checking host system type... i686-pc-linux-gnu
> checking for gcc... gcc
> checking whether the C compiler (gcc  ) works... no
> configure: error: installation or configuration problem: C compiler cannot create 
> executables.

This means that gcc/cc was unable to generate a simple executable,
could mean that your ldconfig is messed up or that you have some
improper environment settings. You can consult your config.log for
any hints.

You can test you're executable creating abilities yourself by
doing something like:

bash$ echo "main(){return(0);}" > test.c
bash$ gcc -o test $CFLAGS $CPPFLAGS $LDFLAGS test.c $LIBS

You'll probably get errors.

Curt
-- 
First, let me assure you that this is not one of those shady pyramid schemes
you've been hearing about.  No, sir.  Our model is the trapezoid!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to