In the last episode (Jul 22), Dexter S. Tan said:
> _________________________________________________________
> command i entered
> CC=gcc CFLAGS="-O3" \
> CXX=gcc CXXFLAGS="-O3 -felide-constructors -fno-exceptions -fno-rtti" \
> ./configure --prefix=/usr/local/mysql --with-low-memory --enable-assembler
[...]
> checking for C compiler default output... configure: error: C compiler cannot create 
>executables
[...]
> configure:1948: checking for C compiler default output
> configure:1951: gcc -O3    conftest.c  >&5
> ./configure: gcc: not found

Configure can't find gcc.  Either make sure it's in your PATH, or put
the pull path to gcc and c++ in your configure command.  Note, CXX=gcc
will *not* work.  gcc is not a c++ compiler; g++ is.  Use CXX=g++.

-- 
        Dan Nelson
        [EMAIL PROTECTED]

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to