CodeBlocks - > " it seems that this project has not been built yet. Do you want to build it now?"- How do I solve this?

It seems that codeblocks cannot find the folder where my project is. I have tested the separate compiler and it is working perfectly. Does anyone know how I solve this?

See:

gcc -Wall -g  -c "/home/ehecatl/Área de Trabalho/programacao-c/Lembrando/main.c" -o obj/Debug/main.o
g++  -o bin/Debug/Lembrando obj/Debug/main.o   
g++: error: obj/Debug/main.o: Arquivo ou diretório não encontrado
g++: fatal error: no input files
compilation terminated.
Author: pmg, 2016-04-21

2 answers

The problem was the folder with accentuation and / or spaces , maybe the Codeblocks IDE can't work properly to pass the data to the compiler:

/home/ehecatl/Área de Trabalho/programacao-c/

Suggested to the author using the folder:

/home/ehecatl/programacao-c/

And the problem has been solved

 1
Author: Guilherme Nascimento, 2017-04-13 12:59:43

Good Night,

I tried several strategies, but only this one solved my problem: 1: Open the terminal; 2: Type the following command line " sudo apt-get install g {"; 3: Restart CodeBlocks.

 0
Author: Itamar de Souza e Silva Filho, 2019-05-20 01:05:32