Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/debug
diff options
context:
space:
mode:
Diffstat (limited to 'debug')
-rw-r--r--debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/DebugConfiguration.java7
1 files changed, 5 insertions, 2 deletions
diff --git a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/DebugConfiguration.java b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/DebugConfiguration.java
index 2bf5c9876cc..2dac543271f 100644
--- a/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/DebugConfiguration.java
+++ b/debug/org.eclipse.cdt.debug.core/src/org/eclipse/cdt/debug/internal/core/DebugConfiguration.java
@@ -93,8 +93,11 @@ public class DebugConfiguration implements ICDebugConfiguration {
public boolean supportsCPU(String cpu) {
String nativeCPU = Platform.getOSArch();
boolean ret = false;
- if ( nativeCPU.startsWith(cpu) ||
- nativeCPU.equalsIgnoreCase("powerpc") && cpu.equalsIgnoreCase("ppc")) {
+ if (nativeCPU.startsWith(cpu)
+ || nativeCPU.equalsIgnoreCase("powerpc") //$NON-NLS-1$
+ && (cpu.equalsIgnoreCase("ppc") //$NON-NLS-1$
+ || cpu.equalsIgnoreCase("xcoff32") || cpu //$NON-NLS-1$
+ .equalsIgnoreCase("xcoff64"))) { //$NON-NLS-1$
ret = getCPUs().contains(CPU_NATIVE);
}
return ret || getCPUs().contains(cpu) || getCPUs().contains("*"); //$NON-NLS-1$

Back to the top