Problème de configuration compilateur Kdevelop
Bonjour,
J'essaie de compiler un petit prog C++ sous Kdevelop (linux Debian). Voici mon code :
Code:
1 2 3 4 5 6 7
| #include <iostream>
using namespace std;
int main()
{
cout << "truc" ;
return 0;
} |
Voici ce que j'obtiens à la compilation :
Citation:
cd '/home/jerome/Dev/essai' && CC="i586-mingw32msvc-c" CCX="i586-mingw32msvc-c++" LD="i586-mingw32msvc-ld" "/home/jerome/Dev/essai/configure" && cd '/home/jerome/Dev/essai' && WANT_AUTOCONF_2_5="1" WANT_AUTOMAKE_1_6="1" make -j1
Processus d'installation -c
checking whether build environment is sane... yes
checking whether make sets &(MAKE)... yes
checking for working aclocal-1.4... found
checking for working autoconf... found
checking for working automake-1.4... found
checking for working autoheader... found
checking for working makeinfo... found
checking for C++ compiler default output file name...
configure: error: C++ compiler cannot create executables
See 'config.log' for more details.
*** Sortie avec l'état : 77 ***
Une idée ? :cry: