fixed bug #9235.
--- a/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/ExecutablesTab.java Mon Jun 08 13:47:39 2009 -0500
+++ b/debuggercdi/com.nokia.cdt.debug.launch/src/com/nokia/cdt/internal/debug/launch/ui/ExecutablesTab.java Mon Jun 08 14:26:06 2009 -0500
@@ -405,7 +405,7 @@
// ignore 'urel', 'udeb' and 'lib' directories when getting the binaries for the same target
// removeLastSegments(2) will strip the filename and 'urel', 'udeb' or 'lib'
IPath launchExeTargetPath = new Path(new File(launchExeName).getCanonicalPath()).removeLastSegments(2);
- for (Executable executable : ExecutablesManager.getExecutablesManager().getExecutables()) {
+ for (Executable executable : ExecutablesManager.getExecutablesManager().getExecutables(true)) {
IPath exePath = executable.getPath();
if (launchExeTargetPath.isPrefixOf(exePath))
files.add(new ExeFileToDebug(exePath.toOSString(), true));