Tool/software: Code Composer Studio
Hi all,
Why can't I debug a C Project?
I created a New Project...C/C++...C Project.
/*
============================================================================
Name : hello.c
Author :
Version :
Copyright : Your copyright notice
Description : Hello World in C, Ansi-style
============================================================================
*/
#include <stdio.h>
#include <stdlib.h>
int main(void) {
puts("!!!Hello World!!!"); /* prints !!!Hello World!!! */
return EXIT_SUCCESS;
}
It complies fine using GCC:
07:38:48 **** Rebuild of configuration Debug for project hello **** Info: Internal Builder is used for build gcc -O0 -g3 -Wall -c -fmessage-length=0 -o "src\\hello.o" "..\\src\\hello.c" gcc -o hello.exe "src\\hello.o" 07:38:48 Build Finished (took 549ms)
But when I try to run the debugger a window pops up: "Unable to Launch". The message is "The selection cannot be launched, and there are no recent launches".
thank you.

