1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-19 23:15:24 +02:00

changed default platform to "local"

This commit is contained in:
David Inglis 2002-09-23 17:15:42 +00:00
parent f3e97df34a
commit d862e1f83c
2 changed files with 2 additions and 1 deletions

View file

@ -44,7 +44,7 @@ public class DebugConfiguration implements ICDebugConfiguration {
public String[] getPlatforms() {
String platform = getConfigurationElement().getAttribute("platform");
if ( platform == null ) {
return new String[] {"*"};
return new String[] {"local"};
}
StringTokenizer stoken = new StringTokenizer(platform, ",");
String[] platforms = new String[stoken.countTokens()];

View file

@ -22,6 +22,7 @@
<extension
point="org.eclipse.cdt.debug.core.CDebugger">
<debugger
platform="local"
name="%GDBDebugger.name"
modes="run,core,attach"
class="org.eclipse.cdt.debug.mi.core.GDBDebugger"