Alright, first of all, I'm using Dev-Cpp 4.9.8.0. Okay, I feel like I'm just randomly getting this warning when trying to compile a project with compile and run (F9): "Project is not compiled". Now, I'm no newbie, so I've searched through the compiler log and through the help file and online. Here's the compiler's log, maybe I missed something:
Compiler: open gl compiler
Building Makefile: "C:\Dev-Cpp\projects\OpenGL\texture mapping [bitmap]\Makefile.win"
Finding dependencies for file: C:\Dev-Cpp\projects\OpenGL\texture mapping [bitmap]\main.cpp
Executing make...
make.exe -f "C:\Dev-Cpp\projects\OpenGL\texture mapping [bitmap]\Makefile.win" all
g++.exe -D__DEBUG__ -c main.cpp -o main.o -I"C:/DEV-CPP/include/c++" -I"C:/DEV-CPP/include/c++/mingw32" -I"C:/DEV-CPP/include/c++/backward" -I"C:/DEV-CPP/include" -g3
At any rate, the project WAS compiling fine until I turned Debugging on. Then I got the warning, but that's not to say that other projects haven't been giving me this error. I just recently decided to convert from Dev-Cpp 4 (the [stable] version).
Thanks in advance,
--Aximal
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Not trying to be funny question: Does it compile if you turn debugging back off?
Wayne
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2003-06-13
Those simple kinds of questions sometimes solve the problems, but that's not the case with this project. No, it does not compile if debugging is turned back off.
Thanks,
--Aximal
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Actually, I wasn't *quite* trying to solve the problem, just get at some answers.
If you did in fact get debugging turned off (I turn it on *both* from the GUI and the command line, make sure there is no -g3 in your compile log), then the problem is likely not associated with the debug option, since there is nothing irreverable done to the code by compiling with debug information included....
If I interpreted you other answer correctly, this code has never correctly compiled under 4.9.8.0. Have you verified correct 4.9.8.0 operation though simple code?
Wayne
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Alright, first of all, I'm using Dev-Cpp 4.9.8.0. Okay, I feel like I'm just randomly getting this warning when trying to compile a project with compile and run (F9): "Project is not compiled". Now, I'm no newbie, so I've searched through the compiler log and through the help file and online. Here's the compiler's log, maybe I missed something:
Compiler: open gl compiler
Building Makefile: "C:\Dev-Cpp\projects\OpenGL\texture mapping [bitmap]\Makefile.win"
Finding dependencies for file: C:\Dev-Cpp\projects\OpenGL\texture mapping [bitmap]\main.cpp
Executing make...
make.exe -f "C:\Dev-Cpp\projects\OpenGL\texture mapping [bitmap]\Makefile.win" all
g++.exe -D__DEBUG__ -c main.cpp -o main.o -I"C:/DEV-CPP/include/c++" -I"C:/DEV-CPP/include/c++/mingw32" -I"C:/DEV-CPP/include/c++/backward" -I"C:/DEV-CPP/include" -g3
g++.exe -D__DEBUG__ main.o -o "main.exe" -L"C:/DEV-CPP/lib" -mwindows -lopengl32 -lglu32 -lglaux -lkernel32 -luser32 -lgdi32 -lwinspool -lcomdlg32 -ladvapi32 -lshell32 -lole32 -loleaut32 -luuid -lodbc32 -lodbccp32
Execution terminated
Compilation successful
At any rate, the project WAS compiling fine until I turned Debugging on. Then I got the warning, but that's not to say that other projects haven't been giving me this error. I just recently decided to convert from Dev-Cpp 4 (the [stable] version).
Thanks in advance,
--Aximal
I am confused. Did things stop working when you turned debugging on or when you upgraded?
Wayne
I've got the same message when the active editor window contained a .h file or another file that was not part of the current project.
drwayne,
It was a new project in Dev-Cpp 4.9.8.0. It began giving this message for that project when I turned debugging on.
nliviu,
Thanks, I'll keep that in mind.
Thanks again,
--Aximal
Not trying to be funny question: Does it compile if you turn debugging back off?
Wayne
Those simple kinds of questions sometimes solve the problems, but that's not the case with this project. No, it does not compile if debugging is turned back off.
Thanks,
--Aximal
Actually, I wasn't *quite* trying to solve the problem, just get at some answers.
If you did in fact get debugging turned off (I turn it on *both* from the GUI and the command line, make sure there is no -g3 in your compile log), then the problem is likely not associated with the debug option, since there is nothing irreverable done to the code by compiling with debug information included....
If I interpreted you other answer correctly, this code has never correctly compiled under 4.9.8.0. Have you verified correct 4.9.8.0 operation though simple code?
Wayne