From: Dan Nelson Date: July 22 2002 3:11am Subject: Re: Installation Problem List-Archive: http://lists.mysql.com/mysql/115205 Message-Id: <20020722031138.GJ40625@dan.emsphone.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii 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