cdt/cdt_6_0_x/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/core/executables/StandardExecutableProvider.java
changeset 135 6f8730b7758d
parent 60 3982fab6369e
child 136 c488f61fb898
equal deleted inserted replaced
133:996f2f4e33c7 135:6f8730b7758d
    53 
    53 
    54 			SubMonitor progress = SubMonitor.convert(monitor, binaries.length);
    54 			SubMonitor progress = SubMonitor.convert(monitor, binaries.length);
    55 
    55 
    56 			for (IBinary binary : binaries) {
    56 			for (IBinary binary : binaries) {
    57 				if (progress.isCanceled()) {
    57 				if (progress.isCanceled()) {
    58 					break;
    58 					return null;
    59 				}
    59 				}
    60 
    60 
    61 				if (binary.isExecutable() || binary.isSharedLib()) {
    61 				if (binary.isExecutable() || binary.isSharedLib()) {
    62 					IPath exePath = binary.getResource().getLocation();
    62 					IPath exePath = binary.getResource().getLocation();
    63 					if (exePath == null)
    63 					if (exePath == null)