mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
fix for bug 234946
This commit is contained in:
parent
c8c7fa0e2e
commit
305b829588
2 changed files with 6 additions and 3 deletions
|
@ -74,6 +74,9 @@ Option.InclPaths = Specify an additional search path for #include s (-I)
|
|||
Option.UndefSym = Undefine a macro name (-U)
|
||||
Option.altivec = Enable compiler support for vector data types (-qaltivec)
|
||||
Option.asm = Control the interpretation of and subsequent generation of code for asm statement (-qasm)
|
||||
Option.asm.default = Default
|
||||
Option.asm.stdcpp = Standard (-qasm=stdcpp)
|
||||
Option.asm.gcc = GCC (-qasm=gcc)
|
||||
Option.Cstdinc = Specify C standard search location (-qc_stdinc)
|
||||
Option.cppstdinc = Specify C++ standard search location (-qcpp_stdinc)
|
||||
Option.qcomplexgccincl = Wrap include files in GCC pragmas (-qcomplexgccincl)
|
||||
|
|
|
@ -900,17 +900,17 @@
|
|||
<enumeratedOptionValue
|
||||
id="xlc.c.compiler.option.input.asm.default"
|
||||
isDefault="true"
|
||||
name="Default">
|
||||
name="%Option.asm.default">
|
||||
</enumeratedOptionValue>
|
||||
<enumeratedOptionValue
|
||||
command="-qasm=stdcpp"
|
||||
id="xlc.c.compiler.option.input.asm.stdcpp"
|
||||
name="Standard (-qasm=stdcpp)">
|
||||
name="%Option.asm.stdcpp">
|
||||
</enumeratedOptionValue>
|
||||
<enumeratedOptionValue
|
||||
command="-qasm=gcc"
|
||||
id="xlc.c.compiler.option.input.asm.gcc"
|
||||
name="GCC (-qasm=gcc)">
|
||||
name="%Option.asm.gcc">
|
||||
</enumeratedOptionValue>
|
||||
</option>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue