No, I was following the "Create a simple application" HelloWorld tutorial in the KDS Help contents, which says to do File>New>Project, then select C++ wizard "Hello World C++ Project", where you select a toolchain.
So now following your suggestion, I can create a new empty C project. I do get a warning
Invalid project path: Include path not found (C:\Freescale\KDSK_1.0.0\rtos).
but I'm not concerned because it's just a warning and I'm not doing any RTOS operations.
I put a simple program into main.c:
/* Hello World program */
#include<stdio.h>
main()
{
printf("Hello World");
}
Project>Build Project works fine, but Project>Build All gives error in Console view (after "make all" is invoked):
make: Nothing to be done for all
Consequently, main.o doesn't get created, so there is nothing to run. What am I doing wrong? I just want a simple program to run, so I can build on it.