hi ,
i just want to run a simple hello world project.
i created a C managed build.
hello world ansi with MinGW
after building it just shows:
14:14:14 **** Rebuild of configuration Debug for project testproj ****
Info: Internal Builder is used for build
gcc -O0 -g3 -Wall -c -fmessage-length=0 -o "src\\testproj.o" "..\\src\\testproj.c"
gcc -o testproj.exe "src\\testproj.o"
14:14:14 Build Finished. 0 errors, 0 warnings. (took 758ms)
so it maybe looks ok...
then i want to run it ... but it pops up a window : details:
Error starting process.
Cannot run program "C:\Users\u\eclipse-workspace3\lol\Debug\lol.exe": Launching failed
Cannot run program "C:\Users\u\eclipse-workspace3\lol\Debug\lol.exe": Launching failed
Cannot run program "C:\Users\u\eclipse-workspace3\lol\Debug\lol.exe": Launching failed
ah now finaly the error shows 0 errors...
Run As configurations:
testproj
Debug/testproj.exe
Used tools:
Currenct builder Gnu Make Builder
GCC Assembler
GCC Archiver
GCC C++ Compiler
GCC C Compiler
MinGW C Linker
MinGW C++ Linker
of course finaly my little code :
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
return EXIT_SUCCESS;
}