I am using Eclicpse to develop a static library made of functions that I use often. I have done so creating a "C++ -> Static Library" project in my workspace.
In the same workspace I have created an other project "Test" that I use to test that my functions work as expected. I have linked the libraries to this project and I am able to use the library in my code.
One of my functions has some problems and I would like to debug it. If I run "Debug" in Eclipse on my test project I can't however "step in" the function that is causing problems.
How can I achieve this? Alternatively which is a good way by which I can test and debug my static libraries in Eclipse?