Skip to main content
aboutsummaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorJeff Johnston2019-05-17 01:58:27 +0000
committerJeff Johnston2019-05-17 01:58:27 +0000
commitb5af112f8658395bca6d208b0c84c5302bceb230 (patch)
tree07b46ab1cc4271c97e8b1d08bb0856d1e7892897 /build
parent74e63a90132d04caa1a7ca5dee70c36b9fb6c968 (diff)
downloadorg.eclipse.cdt-b5af112f8658395bca6d208b0c84c5302bceb230.tar.gz
org.eclipse.cdt-b5af112f8658395bca6d208b0c84c5302bceb230.tar.xz
org.eclipse.cdt-b5af112f8658395bca6d208b0c84c5302bceb230.zip
Bug 547104 - Adding new Docker Connection causes two build dirs
- change createBuildConfiguration() method in providers: MesonBuildConfigurationProvider, CMakeBuildConfigurationProvider, AutotoolsBuildConfigurationProvider,MakefileBuildConfigurationProvider to not create a .x config name and instead use the found IBuildConfiguration so the new CBuildConfiguration will be overridden in the CBuildConfigurationManager Change-Id: Ia5f460e879f3412f19a9dec7b88dd392714b54ca
Diffstat (limited to 'build')
-rw-r--r--build/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/internal/CMakeBuildConfigurationProvider.java15
-rw-r--r--build/org.eclipse.cdt.core.autotools.core/src/org/eclipse/cdt/core/autotools/core/AutotoolsBuildConfigurationProvider.java15
-rw-r--r--build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/core/MakefileBuildConfigurationProvider.java14
-rw-r--r--build/org.eclipse.cdt.meson.core/src/org/eclipse/cdt/internal/meson/core/MesonBuildConfigurationProvider.java15
4 files changed, 39 insertions, 20 deletions
diff --git a/build/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/internal/CMakeBuildConfigurationProvider.java b/build/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/internal/CMakeBuildConfigurationProvider.java
index 3be804388aa..e9ec4ddbe2a 100644
--- a/build/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/internal/CMakeBuildConfigurationProvider.java
+++ b/build/org.eclipse.cdt.cmake.core/src/org/eclipse/cdt/cmake/core/internal/CMakeBuildConfigurationProvider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2016 QNX Software Systems and others.
+ * Copyright (c) 2016, 2019 QNX Software Systems and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -126,12 +126,17 @@ public class CMakeBuildConfigurationProvider implements ICBuildConfigurationProv
}
}
String name = configName.toString();
- int i = 0;
- while (configManager.hasConfiguration(this, project, name)) {
- name = configName.toString() + '.' + (++i);
+ IBuildConfiguration config = null;
+ // reuse any IBuildConfiguration with the same name for the project
+ // so adding the CBuildConfiguration will override the old one stored
+ // by the CBuildConfigurationManager
+ if (configManager.hasConfiguration(this, project, name)) {
+ config = project.getBuildConfig(this.getId() + '/' + name);
+ }
+ if (config == null) {
+ config = configManager.createBuildConfiguration(this, project, name, monitor);
}
- IBuildConfiguration config = configManager.createBuildConfiguration(this, project, name, monitor);
CMakeBuildConfiguration cmakeConfig = new CMakeBuildConfiguration(config, name, toolChain, file, launchMode);
configManager.addBuildConfiguration(config, cmakeConfig);
return cmakeConfig;
diff --git a/build/org.eclipse.cdt.core.autotools.core/src/org/eclipse/cdt/core/autotools/core/AutotoolsBuildConfigurationProvider.java b/build/org.eclipse.cdt.core.autotools.core/src/org/eclipse/cdt/core/autotools/core/AutotoolsBuildConfigurationProvider.java
index ae4f6087d1f..ae2a48d7780 100644
--- a/build/org.eclipse.cdt.core.autotools.core/src/org/eclipse/cdt/core/autotools/core/AutotoolsBuildConfigurationProvider.java
+++ b/build/org.eclipse.cdt.core.autotools.core/src/org/eclipse/cdt/core/autotools/core/AutotoolsBuildConfigurationProvider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2017 Intel Corporation and others.
+ * Copyright (c) 2017, 2019 Intel Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -111,12 +111,17 @@ public class AutotoolsBuildConfigurationProvider implements ICBuildConfiguration
}
}
String name = configName.toString();
- int i = 0;
- while (configManager.hasConfiguration(this, project, name)) {
- name = configName.toString() + '.' + (++i);
+ IBuildConfiguration config = null;
+ // reuse any IBuildConfiguration with the same name for the project
+ // so adding the CBuildConfiguration will override the old one stored
+ // by the CBuildConfigurationManager
+ if (configManager.hasConfiguration(this, project, name)) {
+ config = project.getBuildConfig(this.getId() + '/' + name);
+ }
+ if (config == null) {
+ config = configManager.createBuildConfiguration(this, project, name, monitor);
}
- IBuildConfiguration config = configManager.createBuildConfiguration(this, project, name, monitor);
AutotoolsBuildConfiguration autotoolsConfig = new AutotoolsBuildConfiguration(config, name, toolChain,
launchMode);
configManager.addBuildConfiguration(config, autotoolsConfig);
diff --git a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/core/MakefileBuildConfigurationProvider.java b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/core/MakefileBuildConfigurationProvider.java
index 1b12ceeb1d3..64c34e34c2d 100644
--- a/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/core/MakefileBuildConfigurationProvider.java
+++ b/build/org.eclipse.cdt.make.core/src/org/eclipse/cdt/make/core/MakefileBuildConfigurationProvider.java
@@ -95,12 +95,16 @@ public class MakefileBuildConfigurationProvider implements ICBuildConfigurationP
}
}
String name = configName.toString();
- int i = 0;
- while (configManager.hasConfiguration(this, project, name)) {
- name = configName.toString() + '.' + (++i);
+ IBuildConfiguration config = null;
+ // reuse any IBuildConfiguration with the same name for the project
+ // so adding the CBuildConfiguration will override the old one stored
+ // by the CBuildConfigurationManager
+ if (configManager.hasConfiguration(this, project, name)) {
+ config = project.getBuildConfig(this.getId() + '/' + name);
+ }
+ if (config == null) {
+ config = configManager.createBuildConfiguration(this, project, name, monitor);
}
-
- IBuildConfiguration config = configManager.createBuildConfiguration(this, project, name, monitor);
StandardBuildConfiguration makeConfig = new StandardBuildConfiguration(config, name, toolChain, launchMode);
configManager.addBuildConfiguration(config, makeConfig);
return makeConfig;
diff --git a/build/org.eclipse.cdt.meson.core/src/org/eclipse/cdt/internal/meson/core/MesonBuildConfigurationProvider.java b/build/org.eclipse.cdt.meson.core/src/org/eclipse/cdt/internal/meson/core/MesonBuildConfigurationProvider.java
index b0e35455777..87959aa19b3 100644
--- a/build/org.eclipse.cdt.meson.core/src/org/eclipse/cdt/internal/meson/core/MesonBuildConfigurationProvider.java
+++ b/build/org.eclipse.cdt.meson.core/src/org/eclipse/cdt/internal/meson/core/MesonBuildConfigurationProvider.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2016, 2018 QNX Software Systems and others.
+ * Copyright (c) 2016, 2019 QNX Software Systems and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -129,12 +129,17 @@ public class MesonBuildConfigurationProvider implements ICBuildConfigurationProv
}
}
String name = configName.toString();
- int i = 0;
- while (configManager.hasConfiguration(this, project, name)) {
- name = configName.toString() + '.' + (++i);
+ IBuildConfiguration config = null;
+ // reuse any IBuildConfiguration with the same name for the project
+ // so adding the CBuildConfiguration will override the old one stored
+ // by the CBuildConfigurationManager
+ if (configManager.hasConfiguration(this, project, name)) {
+ config = project.getBuildConfig(this.getId() + '/' + name);
+ }
+ if (config == null) {
+ config = configManager.createBuildConfiguration(this, project, name, monitor);
}
- IBuildConfiguration config = configManager.createBuildConfiguration(this, project, name, monitor);
MesonBuildConfiguration mesonConfig = new MesonBuildConfiguration(config, name, toolChain, file, launchMode);
configManager.addBuildConfiguration(config, mesonConfig);
return mesonConfig;

Back to the top