Hi, I'm a beginner of the XDC.
I use the DM8168, Now I want to write a example run on the A8 core, the example is a "hello world ", I have two file, a mycfg.cfg file and hello.c file.
The content of the mycfg.cfg is following:
var System = xdc.useModule("xdc.runtime.System");
The content of the hello.c file is following
#include <xdc/std.h>
#include <xdc/runtime/System.h>
int main()
{
System_printf("Hello world!\n");
return 0;
}
And I want to compile this example in the ezsdk. I use the command "/home/dvrsdk/dvr/../ti_tools/xdctools_3_20_07_86/xs xdc.tools.configuro -t ti.targets.arm.elf.A8F -p ti.platforms.evmDM8168 -c /home/ezsdk/cgt470_4_6_4 mycfg.cfg"
But does not generate any executable file,Why?