Tool/software: Code Composer Studio
we code c++ on the CCS7.4.0.00015 & TI v8.2.6 compiler . It cann't call constructed function, when we use operator "new" for class, like below:
class CTest{
CTest(int n);
~CTest();
int m_t;}
CTest::CTest(int n)
{
....
}
....
main()
{
CTest *pTst;
pTst = new CTest(1);
....
}
when we execute to "pTst = new CTest(1);" , step into is not CTest constructed function , the CCS info is:"Can't find a source file at "/tmp/scratch/build_jenkins/workspace/BuildAndValidate_Worker/build/c60/product/linux/lib-internal/src/new_.cpp" ". View Disassembly is:
Do we need change the CCS compiler parameter or what should we do? Thank you!