Hi All,
I'm trying to compile my project but it stuck in the linker stage with no warning or remarks,
[Linking...] "C:\Program Files\Texas Instruments\C6000 Code Generation Tools 6.1.9\bin\cl6x" -@"Debug.lkf"
<Linking>
The linker works only if I'm removing the below two pragma DATA_SECTION & DATA_ALIGN from the code, I tried to use only the DATA_SECTION but it doesn't help -
#pragma DATA_SECTION(GlobalBufferLoop, ".set_in_ddr2_global")
#pragma DATA_ALIGN(GlobalBufferLoop, 256)
short GlobalBufferLoop;
What could be the issue?
I'm using
CCS - Ver 3.3.82.10
CGT - v6.1.9
BIOS - 5.33.06
IDE - 5.98.0.393
Many Thanks,
HR