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
dnelson@stripped