mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-23 17:05:26 +02:00
Missing exports for gdbjtag.core plugin
Signed-off-by: Marc Khouzam <marc.khouzam@ericsson.com>
This commit is contained in:
parent
e7200129d1
commit
4a561de9ab
5 changed files with 7 additions and 1 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
|||
Bundle-ManifestVersion: 2
|
||||
Bundle-Name: %pluginName
|
||||
Bundle-SymbolicName: org.eclipse.cdt.debug.gdbjtag.core;singleton:=true
|
||||
Bundle-Version: 8.3.0.qualifier
|
||||
Bundle-Version: 8.4.0.qualifier
|
||||
Bundle-Activator: org.eclipse.cdt.debug.gdbjtag.core.Activator
|
||||
Bundle-Localization: plugin
|
||||
Require-Bundle: org.eclipse.core.runtime,
|
||||
|
@ -16,6 +16,8 @@ Require-Bundle: org.eclipse.core.runtime,
|
|||
org.eclipse.cdt.dsf
|
||||
Bundle-ActivationPolicy: lazy
|
||||
Export-Package: org.eclipse.cdt.debug.gdbjtag.core,
|
||||
org.eclipse.cdt.debug.gdbjtag.core.dsf.gdb.service,
|
||||
org.eclipse.cdt.debug.gdbjtag.core.dsf.gdb.service.macos,
|
||||
org.eclipse.cdt.debug.gdbjtag.core.jtagdevice
|
||||
Bundle-Vendor: %providerName
|
||||
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
|
||||
|
|
|
@ -24,6 +24,7 @@ import org.eclipse.debug.core.ILaunchConfiguration;
|
|||
/**
|
||||
* Jtag control service which selects the Jtag CompleteInitializationSequence.
|
||||
* Use for GDB < 7.0
|
||||
* @since 8.4
|
||||
*/
|
||||
public class GDBJtagControl extends GDBControl {
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@ import org.eclipse.debug.core.ILaunchConfiguration;
|
|||
/**
|
||||
* Jtag control service which selects the Jtag CompleteInitializationSequence.
|
||||
* Use for GDB >= 7.0
|
||||
* @since 8.4
|
||||
*/
|
||||
public class GDBJtagControl_7_0 extends GDBControl_7_0 {
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@ import org.eclipse.debug.core.ILaunchConfiguration;
|
|||
/**
|
||||
* Jtag control service which selects the Jtag CompleteInitializationSequence.
|
||||
* Use for GDB >= 7.2
|
||||
* @since 8.4
|
||||
*/
|
||||
public class GDBJtagControl_7_2 extends GDBControl_7_2 {
|
||||
|
||||
|
|
|
@ -24,6 +24,7 @@ import org.eclipse.debug.core.ILaunchConfiguration;
|
|||
/**
|
||||
* Jtag control service which selects the Jtag CompleteInitializationSequence.
|
||||
* Use for GDB >= 7.2
|
||||
* @since 8.4
|
||||
*/
|
||||
public class GDBJtagControl_7_4 extends GDBControl_7_4 {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue