Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

1 Answer

up vote 4 down vote accepted

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

  • New keywords
  • New data types

I suggest that the new keywords can be conditionally defined to nothing e.g.

#define __kernel 
#define __global

and the extra typenames can be treated similarly e.g.

#define float2 float

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.

#ifndef __OPENCL_VERSION__
/* Define out keywords causing errors */ 
#endif

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.