Re: How to skip system functions while stepping through the code?
From:
Hansjuergen Schulz
Subject:
Re: How to skip system functions while stepping through the code?
Date:
Sat, 3 Mar 2007 09:57:45 +0100
It looks like your C/C++ libraries are compiled in debug mode. You can try to remove the debug information from your libraries using the strip utility. The debugger should skip over library calls if no symbols are available for it.