Gp32ide


BillyCoen

Still Fresh
Joined
Feb 10, 2004
Messages
22
When I open a C file (like hello world)and I try to compile it says "Compiling..." but It don't make anything...I've set all the directories wellSorry if its a stupid question,but someone can answer me?
 
I am not a good programmer but here is what i think.

It does happen something but it happens really quick and then it exit. So you have to open the compiled file in dos, then you will see the result.
 
The problem is that the program doesn't compile anithing!There's no output file!
 
Look for a fxe, gxp or elf file. If that doesnt work you may want to look at the dos box that pops up, is it erroring somewhere? If the compiler errors on your code, then of course there will not be an output file. Try compiling this file using a dos prompt and not the IDE. The devkitadv compiler doesnt like things // comments, so make sure your code is nice and properly formated for Mingw/GCC

More than likely its outputting the compiled files (elf, o, etc..) properly, but the next stage may not be working (to fxe) and then, as its told to do, it cleans up all of the (elf, o, gxb, etc...) files. Making it look like there was no output. watch the Dos Box for errors, try using a dos prompt to manually compile and see if you get the same results.

Also make sure your "make" file has the proper file names and source name, otherwise it will not find the objects / primary source code file.
 
Back
Top