I am using Eclipse as an editor for OpenCL and I turned on syntax highlighting for *.cl files to behave like C++ code. It works great, but all my code is underlined as syntax errors. Is there a way that I can have my syntax highlighting and turn off the errors/warnings just for my *.cl files?
|
First, the Eclipse syntax highlighter is programmed to the grammar of C and C++, and not OpenCL, so it is unaware of the syntactic extensions of OpenCL, such as
I suggest that the new keywords can be conditionally defined to nothing e.g.
and the extra typenames can be treated similarly e.g.
The #defines need guarded so as not to apply in compilation of the OpenCL code, only in the Eclipse editor. Defines can be set in the Eclipse preferences, or guarded in the kernel code itself.
This will have a slight problem in that it removes the distinction between overloads in functions in navigation views in Eclipse. The ideal answer is to reprogram the CDT editor (the part of Eclipse that parses the text you type, and performs analysis on that) to be aware of OpenCL, but that would be a substantial effort. |
|||
|
|