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

I'm trying to use cmake to simplify distributing my OpenCL program. I have a kernel file which includes several headers and other source files, and I want to have a single self contained executable.

My plan is to have cmake run the C preprocessor on the kernel source, turning the cl file and its includes into a single unit which is easier to work with.

I can use add_custom_command to do it by calling gcc/clang with -E, but then I don't get the flags to include the right directories to find the various header files in the command, and I don't see an easy way to find all current include directories to use in the custom call to the compiler.

Is there a way to run only the C preprocessor on a file with the current cmake environment?

share|improve this question
this types of things should usually be contained in CPPFLAGS variable. try to added to your gcc command. cmake might have special variable for that, tryr CMAKE_CPP_FLAGS – Anycorn Aug 25 '10 at 2:43
If there's no such variable defined in your build configuration then you can replace the complier with a script that adds the necessary flags. – torak Aug 25 '10 at 3:36
If I understand correctly, how about cpp? – Foo Bah Aug 10 '11 at 22:13

3 Answers

CMake automatically generates make targets for preprocessing files. For each foo.c in your project there's a foo.i make target that will run only the preprocessor (with all the relevant -D and -I flags etc.). Run make help to see all other potentially useful targets that CMake generates in your makefiles.

BTW, I can't see how this "single unit" will be easier to work with for you.

share|improve this answer

This will be a crude hack, but you can abuse add_definition for that, as "This command can be used to add any flags, but it was originally intended to add preprocessor definitions."

Alternatively you could just set the COMPILE_FLAGS property of the target to "-E", which will achieve the same effect but be local to that target.

share|improve this answer

I would suggest a different approach.

  1. Build your kernel into a binary (example for ATI Stream: http://developer.amd.com/support/KnowledgeBase/Lists/KnowledgeBase/DispForm.aspx?ID=115 )

  2. Compile this binary data into your program (as a char[] blob) and load it when your program starts.

With cmake and custom targets this should be quite simple.

share|improve this answer
There is a small problem with that approach: since opencl binaries are implementation (and device specific for AMD cpu and gpu) you are locking yourself to the configuration you compiled this for (possibly even to the environment you built it with, since there is no guarantee the format won't change over time). So you are loosing the ability to run your compiled program on different harwareconfigurations (unless you include a binary for each possible device). – Grizzly Oct 1 '10 at 19:49
As OpenCL is for highly optimized calculations and the implementations and drivers (AMD/nVidia) continually improve as do the gpu devices, you would have to think about an update mechanism any way. Additionally OpenCL (AMD) provides the possibility to build the kernel for all known devices. – tauran Oct 2 '10 at 8:31

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.