mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 02:06:01 +02:00
parent
72c8186f50
commit
220ba610d0
6 changed files with 19 additions and 5 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.core; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.core; singleton:=true
|
||||||
Bundle-Version: 8.4.0.qualifier
|
Bundle-Version: 8.3.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
|
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -1052,7 +1052,7 @@ public abstract class CBuildConfiguration extends PlatformObject implements ICBu
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 8.4
|
* @since 8.3
|
||||||
* @param launcher - launcher to set
|
* @param launcher - launcher to set
|
||||||
*/
|
*/
|
||||||
public void setLauncher(ICommandLauncher launcher) {
|
public void setLauncher(ICommandLauncher launcher) {
|
||||||
|
|
|
@ -16,7 +16,7 @@ package org.eclipse.cdt.core.build;
|
||||||
/**
|
/**
|
||||||
* Tool chain constants
|
* Tool chain constants
|
||||||
*
|
*
|
||||||
* @since 8.4
|
* @since 8.3
|
||||||
* @noimplement This interface is not intended to be implemented by clients.
|
* @noimplement This interface is not intended to be implemented by clients.
|
||||||
* @noextend This interface is not intended to be extended by clients.
|
* @noextend This interface is not intended to be extended by clients.
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<component id="org.eclipse.cdt.docker.launcher" version="2">
|
||||||
|
<resource path="src/org/eclipse/cdt/docker/launcher/ContainerCommandLauncher.java" type="org.eclipse.cdt.docker.launcher.ContainerCommandLauncher">
|
||||||
|
<filter comment="New constant is an allowable exception to bumping major version" id="336658481">
|
||||||
|
<message_arguments>
|
||||||
|
<message_argument value="org.eclipse.cdt.docker.launcher.ContainerCommandLauncher"/>
|
||||||
|
<message_argument value="SECCOMP_UNCONFINED_STR"/>
|
||||||
|
</message_arguments>
|
||||||
|
</filter>
|
||||||
|
</resource>
|
||||||
|
</component>
|
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %Plugin.name
|
Bundle-Name: %Plugin.name
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.docker.launcher;singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.docker.launcher;singleton:=true
|
||||||
Bundle-Version: 2.0.200.qualifier
|
Bundle-Version: 2.1.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.docker.launcher.DockerLaunchUIPlugin
|
Bundle-Activator: org.eclipse.cdt.docker.launcher.DockerLaunchUIPlugin
|
||||||
Bundle-Vendor: %Plugin.vendor
|
Bundle-Vendor: %Plugin.vendor
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
@ -13,7 +13,7 @@ Require-Bundle: org.eclipse.ui,
|
||||||
org.eclipse.cdt.launch;bundle-version="7.1.0",
|
org.eclipse.cdt.launch;bundle-version="7.1.0",
|
||||||
org.eclipse.debug.core;bundle-version="3.9.1",
|
org.eclipse.debug.core;bundle-version="3.9.1",
|
||||||
org.eclipse.debug.ui;bundle-version="3.10.1",
|
org.eclipse.debug.ui;bundle-version="3.10.1",
|
||||||
org.eclipse.cdt.core;bundle-version="6.5.0",
|
org.eclipse.cdt.core;bundle-version="8.3.0",
|
||||||
org.eclipse.cdt.debug.core;bundle-version="7.5.0",
|
org.eclipse.cdt.debug.core;bundle-version="7.5.0",
|
||||||
org.eclipse.cdt.ui;bundle-version="5.8.0",
|
org.eclipse.cdt.ui;bundle-version="5.8.0",
|
||||||
org.eclipse.ui.ide;bundle-version="3.10.1",
|
org.eclipse.ui.ide;bundle-version="3.10.1",
|
||||||
|
|
|
@ -68,6 +68,9 @@ public class ContainerCommandLauncher implements ICommandLauncher, ICBuildComman
|
||||||
|
|
||||||
public final static String VOLUME_SEPARATOR_REGEX = "[|]"; //$NON-NLS-1$
|
public final static String VOLUME_SEPARATOR_REGEX = "[|]"; //$NON-NLS-1$
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @since 2.1
|
||||||
|
*/
|
||||||
public final static String SECCOMP_UNCONFINED_STR = "seccomp=unconfined"; //$NON-NLS-1$
|
public final static String SECCOMP_UNCONFINED_STR = "seccomp=unconfined"; //$NON-NLS-1$
|
||||||
|
|
||||||
private IProject fProject;
|
private IProject fProject;
|
||||||
|
|
Loading…
Add table
Reference in a new issue