i386-mingw32-g++: error trying to exec 'cc1plus': execvp: No such file or directory
- by Cathy
If I compile this QT c++ program in SuSE Linux
include
using namespace std;
int main ()
{
cout << "Hello World!";
return 0;
When I type
i386-mingw32-g++ helloworld.cpp
I get the following error
i386-mingw32-g++: error trying to exec 'cc1plus': execvp: No such file or directory
Is this because MinGW package which i installed contains only gcc in it.. hence i downloaded gcc-g++-3.4.5.rpm package and just copy pasted i386-mingw32-g++ and cc1plus executable along with C++ include files.
Pls reply.
Thanking You