> I would think that g++ is part of the gcc distribution and configure > finds g++. It only gave an error with c++ and according to the README > you should than use CXX=gcc, then configure gives no error. Only make > does > > Eelco
Since version 3.x of gcc, you really have to use "g++" to make C++ binaries, otherwise it might produce missing symbols. Just try it in fact... CXX=g++ ;-)
