vote up 0 vote down star

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

flag

25% accept rate

2 Answers

vote up 1 vote down

Ugh. The cc1plus in gcc-g++-3.4.5.rpm is not for mingw32. You need the one for your distro.

e.g. for Fedora 10, use http://sourceforge.net/projects/outmodedbonsai/files/Mingw%20Cross-compiler/mingw-1.10-1.fc10.x86_64.rpm

link|flag
Thanks for the reply... If it is possible can u pls send me the link for SuSE Linux Distro of mingw-g++. Pls do reply – Cathy Jul 3 at 5:13
sorry, I can't find any rpm for suse with c++. You may try the "compile from source" way in mingw.org/wiki/LinuxCrossMinGW – J-16 SDiZ Jul 3 at 5:39
vote up 0 vote down

suse cross-compile toolchain is here. http://download.opensuse.org/repositories/CrossToolchain%3A/mingw/

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.