Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Marchi2015-04-24 21:31:47 +0000
committerGerrit Code Review @ Eclipse.org2015-09-22 14:01:08 +0000
commitd23b3871ff7a5acd5d5bd35755bc762ab324260f (patch)
treeebd99395d7c7c2a93209f6e48418cc23f31297cd
parent5cc43360724772fefa127a28023b67d4f8133f1f (diff)
downloadorg.eclipse.cdt-d23b3871ff7a5acd5d5bd35755bc762ab324260f.tar.gz
org.eclipse.cdt-d23b3871ff7a5acd5d5bd35755bc762ab324260f.tar.xz
org.eclipse.cdt-d23b3871ff7a5acd5d5bd35755bc762ab324260f.zip
Bug 465461 - Merge "Symbols" and "Preprocessor" in GCC C compiler settings
...so that it matches the way the GCC C++ compiler is. Change-Id: I9e32dc3888cfec2c0c01196f44f2e730e2bbc574 Signed-off-by: Simon Marchi <simon.marchi@polymtl.ca>
-rw-r--r--build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml9
1 files changed, 2 insertions, 7 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
index 784e67955d3..0d8ca731a96 100644
--- a/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
+++ b/build/org.eclipse.cdt.managedbuilder.gnu.ui/plugin.xml
@@ -1036,21 +1036,16 @@
id="gnu.c.compiler.option.preprocessor.preprocess"
valueType="boolean">
</option>
- <optionCategory
- owner="cdt.managedbuild.tool.gnu.c.compiler"
- name="%OptionCategory.Symbols"
- id="gnu.c.compiler.category.symbols">
- </optionCategory>
<option
name="%Option.Posix.DefSym"
- category="gnu.c.compiler.category.symbols"
+ category="gnu.c.compiler.category.preprocessor"
command="-D"
id="gnu.c.compiler.option.preprocessor.def.symbols"
valueType="definedSymbols">
</option>
<option
name="%Option.Posix.UndefSym"
- category="gnu.c.compiler.category.symbols"
+ category="gnu.c.compiler.category.preprocessor"
command="-U"
id="gnu.c.compiler.option.preprocessor.undef.symbol"
valueType="undefDefinedSymbols">

Back to the top