Hello everybody,
first of all let me give you some context:
I have a medium-size project (C++) composed by a lot of shared libraries and one executable (that loads al the other libraries).
All the source-code is cross-compiled on my PC and then deployed and run on the target (ARM – Linux).
What is the simplest way in VGDB to compile/deploy/debug a library in debug configuration (so with debug symbols and optim. off) while all the other libs and exe are in release configuration?
At the moment my “startup project” is the main executable, but there are no problem for me to put the specific library as startup prj and then start the main exe with a command (actually, I’ve already tried this but it doesn’t work).
Thank you