On 22-Jul-2001 David Turetsky wrote: > I would like to migrate some large c/c++ programs from Windows to Linux. > Right now I'm invoking gcc -- and even for the most trivial program I am > getting the error message: "installation problem, cannot exec 'cc1plus': > no such file or directory" >
gcc is 2 things: the c compiler and the controller for the other language's own compiler. Make sure you have g++ installed, it sounds like you don't. You should be able to do 'g++ my.cpp' and it should work.