probleme de compilation avec dev-C++
Bonjour,
J'essaie de compiler l'exemple
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| #include <iostream>
using namespace std;
int main (int argc, char *argv[])
{
char quit;
quit = '\0';
while (quit != 'q')
{
cout << "Hello ! This is a console app." << endl;
cout << "To create a console, go to Project Options and select" << endl;
cout << "\'Win32 Console\'." << endl;
cout << "Press q to quit " << endl;
cin >> quit;
}
return 0;
} |
et j'obtiens l'erreur :
Code:
1 2 3 4 5 6 7 8 9 10 11
|
Compilateur: Default compiler
Building Makefile: "C:\Dev-Cpp\Examples\Hello\Makefile.win"
Exécution de make...
make.exe -f "C:\Dev-Cpp\Examples\Hello\Makefile.win" Hello.o
g++.exe -c Hello.cpp -o Hello.o -I"C:/Dev-Cpp/lib/gcc/mingw32/3.4.2/include" -I"C:/Dev-Cpp/include/c++/3.4.2/backward" -I"C:/Dev-Cpp/include/c++/3.4.2/mingw32" -I"C:/Dev-Cpp/include/c++/3.4.2" -I"C:/Dev-Cpp/include"
make.exe: *** [Hello.o] Error -1073741819
Exécution terminée |
Pouvez vous m'aider s'il vous plait ?
Merci
Pascal