mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-05 08:46:02 +02:00

This commit adds support for debugging new processes launched locally using the LLDB debugger (lldb-mi). The minimum version supported is LLDB 3.8. Preliminary documentation on how to set it up is available here: https://github.com/MarkZ3/Eclipse-CDT-WIP/issues/9#issuecomment-236483223 Bug: 405670 Change-Id: If46543e974e2f19c45ab3bba088eab35fe737077 Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
22 lines
896 B
Text
22 lines
896 B
Text
Manifest-Version: 1.0
|
|
Bundle-ManifestVersion: 2
|
|
Bundle-Name: %pluginName
|
|
Bundle-Vendor: %providerName
|
|
Bundle-SymbolicName: org.eclipse.cdt.llvm.dsf.lldb.core;singleton:=true
|
|
Bundle-Version: 1.0.0.qualifier
|
|
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
|
|
Bundle-Localization: plugin
|
|
Require-Bundle: org.eclipse.debug.core,
|
|
org.eclipse.cdt.dsf.gdb,
|
|
org.eclipse.cdt.launch,
|
|
org.eclipse.core.runtime,
|
|
org.eclipse.cdt.dsf,
|
|
org.eclipse.cdt.debug.core,
|
|
org.eclipse.core.variables,
|
|
org.eclipse.cdt.core
|
|
Export-Package: org.eclipse.cdt.llvm.dsf.lldb.core,
|
|
org.eclipse.cdt.llvm.dsf.lldb.core.internal;x-friends:="org.eclipse.cdt.llvm.dsf.lldb.ui",
|
|
org.eclipse.cdt.llvm.dsf.lldb.core.internal.launching;x-internal:=true,
|
|
org.eclipse.cdt.llvm.dsf.lldb.core.internal.service;x-internal:=true
|
|
Bundle-Activator: org.eclipse.cdt.llvm.dsf.lldb.core.internal.LLDBCorePlugin
|
|
Bundle-ActivationPolicy: lazy
|