Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Recoskie2007-06-20 18:58:24 +0000
committerChris Recoskie2007-06-20 18:58:24 +0000
commit1df24d690a73fa250195171439c5d5d0865559b1 (patch)
tree3f5a8b06f197923552ad3eb49a242d31f9961646 /xlc/org.eclipse.cdt.managedbuilder.xlc.ui
parentcdfb00b1fc51e3ac6247256ca89905e28a5cc9d1 (diff)
downloadorg.eclipse.cdt-1df24d690a73fa250195171439c5d5d0865559b1.tar.gz
org.eclipse.cdt-1df24d690a73fa250195171439c5d5d0865559b1.tar.xz
org.eclipse.cdt-1df24d690a73fa250195171439c5d5d0865559b1.zip
adding built-in macros and includes to xlc toolchain
Diffstat (limited to 'xlc/org.eclipse.cdt.managedbuilder.xlc.ui')
-rw-r--r--xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml b/xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml
index 07155021332..a1b4663e79c 100644
--- a/xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml
+++ b/xlc/org.eclipse.cdt.managedbuilder.xlc.ui/plugin.xml
@@ -207,6 +207,18 @@
id="xlc.c.compiler.option.optimization.Qminus"
valueType="string">
</option>
+ <option
+ id="xlc.c.compiler.option.input.D.c"
+ superClass="xlc.c.compiler.option.input.D">
+ <listOptionValue
+ builtIn="true"
+ value="__xlc__">
+ </listOptionValue>
+ <listOptionValue
+ builtIn="true"
+ value="__IBMC__">
+ </listOptionValue>
+ </option>
</tool>
<tool
command="xlC"
@@ -408,6 +420,18 @@
name="%Option.optimization.exceptionhandling.v6">
</enumeratedOptionValue>
</option>
+ <option
+ id="xlc.c.compiler.option.input.D.cpp"
+ superClass="xlc.c.compiler.option.input.D">
+ <listOptionValue
+ builtIn="true"
+ value="__xlC__">
+ </listOptionValue>
+ <listOptionValue
+ builtIn="true"
+ value="__IBMCPP__">
+ </listOptionValue>
+ </option>
</tool>
<projectType
@@ -842,6 +866,10 @@
id="xlc.c.compiler.option.include.paths"
valueType="includePath"
browseType="directory">
+ <listOptionValue
+ builtIn="true"
+ value="/usr/include">
+ </listOptionValue>
</option>
<option
name="%Option.UndefSym"

Back to the top