mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 09:25:31 +02:00
Bug 114793: Add an extension point to contribute command factories. Added standard command factory for gdb server.
This commit is contained in:
parent
43f8eb837a
commit
bce2540688
3 changed files with 15 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
2006-02-08 Mikhail Khodjaiants
|
||||
Bug 114793: Add an extension point to contribute command factories.
|
||||
Added standard command factory for gdb server.
|
||||
* plugin.xml
|
||||
* plugin.properties
|
||||
|
||||
2006-02-07 Mikhail Khodjaiants
|
||||
Bug 114793: Add an extension point to contribute command factories.
|
||||
+ mi/org/eclipse/cdt/debug/mi/core/command/factories/linux (package)
|
||||
|
|
|
@ -16,6 +16,7 @@ CygwinGDBDebugger.name=Cygwin gdb Debugger
|
|||
GDBServer.name=gdbserver Debugger
|
||||
GDBMIDebugger.name=gdb/mi
|
||||
|
||||
StandardCommandFactory.name=Standard
|
||||
StandardLinuxCommandFactory.name=Standard
|
||||
StandardWindowsCommandFactory.name=Standard
|
||||
CygWinCommandFactory.name=CygWin
|
||||
|
|
|
@ -60,10 +60,17 @@
|
|||
<commandFactory
|
||||
class="org.eclipse.cdt.debug.mi.core.command.factories.linux.StandardLinuxCommandFactory"
|
||||
debuggerID="org.eclipse.cdt.debug.mi.core.CDebuggerNew"
|
||||
id="org.eclipse.cdt.debug.mi.core.standardLinuxCommandFactory1"
|
||||
id="org.eclipse.cdt.debug.mi.core.standardLinuxCommandFactory"
|
||||
miVersions="mi,mi1,mi2"
|
||||
name="%StandardLinuxCommandFactory.name"
|
||||
platforms="linux"/>
|
||||
<commandFactory
|
||||
class="org.eclipse.cdt.debug.mi.core.command.factories.StandardCommandFactory"
|
||||
debuggerID="org.eclipse.cdt.debug.mi.core.GDBServerCDebugger"
|
||||
id="org.eclipse.cdt.debug.mi.core.standardCommandFactory"
|
||||
miVersions="mi,mi1,mi2"
|
||||
name="%StandardCommandFactory.name"
|
||||
platforms="*"/>
|
||||
</extension>
|
||||
|
||||
</plugin>
|
||||
|
|
Loading…
Add table
Reference in a new issue