This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Based on these errors...
Günter said:undefined first referenced symbol in file --------- ---------------- ti_sysbios_knl_Semaphore_Params__init__S ./main.obj ti_sysbios_knl_Semaphore_post__E ./main.obj xdc_runtime_Error_init__E ./main.obj
Try adding the following to your .cfg script:
xdc.useModule('ti.sysbios.knl.Semaphore');
xdc.useModule('xdc.runtime.Error');
It's probably stated in the BIOS Users Guide, but the rule of thumb to follow is...
If your c file does this: #include <some/package/Module.h>
Your cfg script must do this: xdc.useModule('some.package.Module');
Chris