#include <stdio.h>
int main(int argc, char* argv[])
{
}
yesterday all worked fine... :-(Good old times... ;-)
sorry about .C it was a typo i mean i use of course .c ! about the compiler look that image please:yesterday all worked fine... :-(Good old times... ;-)
But seriously: C::B is telling you that it cannot find the compiler executable(s). Thus check the compiler setup and verify that you didn't rename the MinGW folder or something. In addition: Do you really mean "*.C" files? Because that could lead into trouble under Linux. It is not common to use *.C for c-files IMHO. You better choose lower case.
With regards, Morten.
actually my path to the compiler is ok!?Try using C:\MinGW only (and notice the red information on your screen shot about that).
I used c:\mingw only now but its not logical and furthermore its not working ;-) i have installed mingw 5.1.3 i think is there anything more complete or newer ? you have a direct link ?actually my path to the compiler is ok!?Try using C:\MinGW only (and notice the red information on your screen shot about that).
And BTW: Are you aware that you installed just the GCC core package? C++ (mingw32-g++) is missing (btw).
With regards, Morten.
why is codeblocks IDE using the mingw32-g++.exe which does not exist on my pc ??? this file codeblocks should use: mingw32-gcc.exe !!!Try this: right click the file in filemanager, and choose properties. In advanced you see compilor variable. It shoud be CPP for a c++ file and CC for a c file.
and why is codeblcoks using the Zugaufgabe.o file and not the Zugaufgabe.c file ????
(http://666kb.com/i/aul89dshbi97jg5fv.jpg) regarding that image everything seems fine so what?why is codeblocks IDE using the mingw32-g++.exe which does not exist on my pc ??? this file codeblocks should use: mingw32-gcc.exe !!!Try this: right click the file in filemanager, and choose properties. In advanced you see compilor variable. It shoud be CPP for a c++ file and CC for a c file.and why is codeblcoks using the Zugaufgabe.o file and not the Zugaufgabe.c file ????
In the compile fase of the proces it compiles the .c file and builds the .o file.
In the link fase it uses the .o files to build the executable.
then simply change the linker executable to mingw32-gcc.exe, too and your problemjesus it works!!! :lol: :lol: thank you folks thats a big xmas gift now ;-)