Other Parts Discussed in Thread: SYSBIOS, TMP116
I'm currently trying to compile a project and am receiving the following build error:

It let's me know that the following symbols are unresolved:
undefined first referenced
symbol in file
--------- ----------------
ICall_createRemoteTasks ./Startup/main.obj
ICall_enterCriticalSection ./Startup/osal_icall_ble.obj
ICall_fetchServiceMsg ./Application/simple_central.obj
ICall_free ./Application/simple_central.obj
ICall_freeMsg ./Application/simple_central.obj
ICall_getLocalMsgEntityId ./Application/simple_central.obj
ICall_init ./Startup/main.obj
ICall_leaveCriticalSection ./Startup/osal_icall_ble.obj
ICall_malloc ./Application/simple_central.obj
ICall_registerApp ./Application/central_control.obj
RegisterAssertCback ./Startup/main.obj
icall_directAPI ./Application/simple_central.obj
osalHeapAllocFxn C:\Users\Bluerover\workspace_v12\iris_a_central\Debug\configPkg\package\cfg\simple_central_app_pem4f.oem4f
osalHeapFreeFxn C:\Users\Bluerover\workspace_v12\iris_a_central\Debug\configPkg\package\cfg\simple_central_app_pem4f.oem4f
osalHeapGetStatsFxn C:\Users\Bluerover\workspace_v12\iris_a_central\Debug\configPkg\package\cfg\simple_central_app_pem4f.oem4f
osalHeapInitFxn C:\Users\Bluerover\workspace_v12\iris_a_central\Debug\configPkg\package\cfg\simple_central_app_pem4f.oem4f
osalHeapIsBlockingFxn C:\Users\Bluerover\workspace_v12\iris_a_central\Debug\configPkg\package\cfg\simple_central_app_pem4f.oem4f
After looking into this issue I decided to look into the linker issues and found the following under the linker file setup properties:

I know that for ICALL I have to add some sort of file to the file setup but I don't know which file to add or where to find it. I do have <icall.h> included as a library in my main.c file so I'm unsure why this linker issue is still appearing.
Any guidance on this issue would be much appreciated.

