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

0

It seems that codeblocks can not 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.
    
asked by anonymous 21.04.2016 / 21:14

1 answer

1

The problem was folder with accent and / or spaces , maybe the IDE Codeblocks can not work correctly to pass the data to the compiler:

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

Suggested author to use folder:

/home/ehecatl/programacao-c/

And the problem has been resolved

    
25.04.2016 / 20:26