I'm new to Pelles C but have used both Code::Blocks and Visual Studio to create, compile, build and run programs. On Pelles C, however, I can't get the simplest of programs to build. An example of one such program is shown below:
#include <stdio.h>
int main(void)
{
printf("Hello, World!");
}
The error I get is on the lines below this:
Building HW.exe.
*** Error: polink.exe -subsystem:console -machine:x64 -out:"C:\Users\alexa_000\Documents\Pelles C Projects\HW\HW.exe" "C:\Users\alexa_000\Documents\Pelles C Projects\HW\output\main.obj"
*** Error: The system cannot find the file specified.
Done.
What am I doing wrong? I've searched the web, the Pelles C forum and the Pelles C web help, all to no avail. Thanks.