I downloaded Pelle's C 8 x64 RC1/RC2 Under Win7-x64, and tested with a "hello world" program, but always got error. Code is :
#include <stdio.h>
int main(void) {
printf ("Hello, World!");
return 0;
}
When I set "Runtime Library" to "Single-Thread (LIB)" or "Multithread (LIB)", all is fine. But whne I set it to "Multithread (DLL)", I got follow error messages:
POLINK: error: Unresolved external symbol '__crt_abort'.
POLINK: fatal error: 1 unresolved external(s).
*** Error code: 1 ***
Done.