Bonjour

je continue mes tests de code::block en mode console. je n'arrice pas à compiler mon programme ! Voici la sortie de buid and run :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
-------------- Build: Debug in chaine_2009 ---------------
 
Compiling: main.cpp
/bin/bash: g++ -Wall -fexceptions  -g     -c /home/bs/Cours_IUT/info/chaine_2009/main.cpp -o obj/Debug/main.o: Aucun fichier ou dossier de ce type
Process terminated with status 127 (0 minutes, 0 seconds)
0 errors, 0 warnings
Si je fais manuellement
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
[troumad@iutb-geii-p46][~/Cours_IUT/info/chaine_2009]
$ g++ -Wall -fexceptions  -g     -c /home/bs/Cours_IUT/info/chaine_2009/main.cpp -o obj/Debug/main.o
[troumad@iutb-geii-p46][~/Cours_IUT/info/chaine_2009]
$ g++  -o bin/Debug/chaine_2009 obj/Debug/main.o
je trouve enfin mon exécutable...

pourquoi par défaut ai-je cette solution inadaptée ? Comment refaire le réglage pour que ça marche enfin ?