On Fri, May 21, 1999 at 11:36:44 +0200, Thomas Ruedas wrote: > Originally, I got the error message gcc: install problem, cannot exec > 'cc1plus': No such file or directory when compiling a program (actually > wp2latex v.2.64, see http://cmp.felk.cvut.cz/~fojtik/wp2latex.htm) by > calling a makefile. After not getting any effect when trying to "env > CXX=g++ ./configure" or "make CXX=g++" as was advised,
The intent of that is to invoke the C++ compiler as "g++" rather than "gcc". You've now told us what program you're trying to compile; that helps. wp2latex doesn't seem to follow many of the informal standards (i.e. using the make variable names that are used in GNU make's built-in rules). Change the "GCC" definition in sources.cc/makefile from "gcc" to "g++". > The makefile began to work then (emitting tons of warnings) and finally > died with messages concerning unreferenced '_' or so (didn't notice that > when compiling the same source on the AIX here). This seems to be internationalisation-related. I don't know much about i18n issues, but setting GETTEXT to empty in sources.cc/makefile makes it compile on the system I'm testing on. HTH, Ray -- Cyberspace, a final frontier. These are the voyages of my messages, on a lightspeed mission to explore strange new systems and to boldly go where no data has gone before.