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.

CCS3.3 for OMAP3530 load symbol problem

The problem is loading error with CCS3.3 . The projet is built successfully but loaded symbols fail.

My compiler options=-g -q -pr -me -mv7a8 --abi=eabi

Linker options= eabi -e_c_int00 -heap0x800 -stack0x800 -w -x

My ccs version is 3.3.81.5 and tms470 tools is v4.6.3

This problem appear when I build this program and try to load *.out.

After delete the structure function  ,problem will die out. I think if this is CCS bug and I'm desperate for a correct solution ,thanks!

Program as show below:

class CTest
{
public:
    CTest(){m_pTest=0;}; // After delete the structure function  ,problem will die out
    int* m_pTest;   
};


class CComEntity 
{
private:
    static CTest s_value[10];
}

CTest CComEntity::s_value[10];