In CCS 5, When I try to add breakpoint; I can either enter address or symbol name.
For example, in the following code (two function with the same name in different classes):
class MyClass1{ public: void start(); };
class MyClass2{ public: void start(); };
To put breakpoint at MyClass2::start, what is the symbol name?
When I use mangled name, CCS can't resolve the symbol to address. If I use full name MyClass2::start, CCS can't resolve the symbol to address.
If I add symbol `start` it put breakpoint at first occurrence of any function named start, so it put breakpoint at MyClass1::start.
Question:
How to add breakpoint using mangled symbol name?