vote up 0 vote down star

Hello I want to build a project with intel compiler.

With default gcc I usually run:

cmake -DCMAKE_CXX_FLAGS=-I/some/path  /path/to/project

And this works fine.

cmake -DCMAKE_CXX_COMPILER=icpc -DCMAKE_C_COMPILER=icc  -DCMAKE_CXX_FLAGS=-I/some/path  /path/to/project

When I try to use non-default compiler it does not path CMAKE_CXX_FLAGS variable content to compiler at all.

How to fix this?

Correct Answer is: You need to specify the type of the CMAKE_CXX_FLAGS variable:

-DCMAKE_CXX_FLAGS:STRING=-I/some/path

Then this would work

flag

70% accept rate
so choose a anwser ;-) – Nadir SOUALEM Nov 27 at 7:41

3 Answers

vote up 1 vote down

The good way to do what you expect is to use:

export CC=icc CXX=icpc cmake -DCMAKE_CXX_FLAGS=-I/some/path  /path/to/project
link|flag
Thanks that had worked ;) – Artyom Nov 6 at 21:41
vote up 0 vote down

Is there some reason that you can't add the include path (from your CMAKE_CXX_FLAGS) to your CMakeLists.txt file?

add_includes(/some/path)
link|flag
Yes. I do not want to edit CMakeLists.txt because it is generic file, I just want to add some specifications for specific build. CMake file should not know any kind of local paths of user. – Artyom Nov 5 at 17:13
Your reasoning doesn't make any sense to me. For the build to work for other people, they would also need the files found in that include path. If that's the case, and it's a 3rd-party library that you can't add to the project, then you should have a Find module for it. Putting additional include paths in the CXX_FLAGS variable is the Wrong Way to do it. – greyfade Nov 5 at 21:16
"they would also need the files found in that include path." Why do you think so, I point with these flags to some custom-non-standard location of my foo-bar library. Your assumptions are wrong. Also... CMakeLists.txt is under source control, so I don't want accidentially put irrelevant changes that point to my local files to upcoming tree. – Artyom Nov 5 at 21:33
That's what the Find module is for. You add your custom path to the search list and commit it to the tree. Other developers who have it in a different location will never see a problem. Take a look at the implementations of some existing Find modules - they're in the CMake Modules directory. – greyfade Nov 6 at 3:52
vote up 0 vote down

I know you don't want to edit the CMakeLists.txt file, but what about editing it allowing the user to select the compiler -- something like

SET(MYVAR TRUE CACHE BOOL "Use intel compiler?")

And later on, if MYVAR variable is set, do the add_includes()..? You can also use some package finding utilities (CMAKE provides some) to find the specific compiler include files, etc.

link|flag

Your Answer

Get an OpenID
or

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