Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Lindo2011-07-12 00:24:48 +0000
committerVivian Kong2011-07-12 00:25:36 +0000
commit3e9c760648d01af827bca000b69d3c5acc7f0243 (patch)
tree9e6b608f9104e0b03c90fe4829db3dbf340f0d4c /xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml
parent077f712b4206e44b58a6af849023ae5dabe798a9 (diff)
downloadorg.eclipse.cdt-3e9c760648d01af827bca000b69d3c5acc7f0243.tar.gz
org.eclipse.cdt-3e9c760648d01af827bca000b69d3c5acc7f0243.tar.xz
org.eclipse.cdt-3e9c760648d01af827bca000b69d3c5acc7f0243.zip
Bug 350501 - add support in managed build projects for xlC v11
compiler options - 1) qstrict not showing 2) fixed qfuncsect spelling error 3) added some C only options Change-Id: I71aa8bdab83accbd3d559d9aad4bc97331f21263
Diffstat (limited to 'xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml')
-rw-r--r--xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml25
1 files changed, 22 insertions, 3 deletions
diff --git a/xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml b/xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml
index edc348dc558..6958a67f525 100644
--- a/xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml
+++ b/xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml
@@ -230,6 +230,25 @@
resourceFilter="all"
valueType="boolean">
</option>
+ <option
+ applicabilityCalculator="org.eclipse.cdt.managedbuilder.xlc.ui.properties.XLCApplicabilityCalculator"
+ category="xlc.c.compiler.category.objcc"
+ command="-qconcurrentupdate"
+ defaultValue="false"
+ id="org.eclipse.cdt.managedbuilder.xlc.ui.cpp.option.output.qconcurrentupdate"
+ isAbstract="false"
+ name="%Option.qconcurrentupdate.v11"
+ resourceFilter="all"
+ valueType="boolean">
+ </option>
+ <option
+ applicabilityCalculator="org.eclipse.cdt.managedbuilder.xlc.ui.properties.XLCApplicabilityCalculator"
+ category="xlc.c.compiler.category.optimization"
+ command="-qrestrict"
+ id="xlc.c.compiler.option.optimization.qrestrict"
+ name="%Option.qrestrict"
+ valueType="string">
+ </option>
</tool>
<tool
command="${XL_compilerRoot}/xlC"
@@ -1495,10 +1514,10 @@
<option
category="xlc.c.compiler.category.output"
- command="-qfuncset"
+ command="-qfuncsect"
defaultValue="false"
- id="xlc.c.compiler.option.output.funcset"
- name="%Option.funcset"
+ id="xlc.c.compiler.option.output.funcsect"
+ name="%Option.funcsect"
valueType="boolean">
</option>
<option

Back to the top