Re: [CMake] cmake with intel compilers

2012-09-23 Thread Burlen Loring
hmmm, I was a bit hasty in concluding that the issue has gone away in newer releases. on another system, I have the issue with cmake 2.8.8. The intel compiler version there is 11.1. On this system if I don't include $INTEL_ROOT/include/intel64 explicitly , gcc's xmm intrinsics are found causing

Re: [CMake] cmake with intel compilers

2012-09-23 Thread Burlen Loring
I'm not having the issue with a newer version of intel compiler and cmake 2.8.8. I'm concluding that this is not an issue in current releases. Burlen On 9/23/2012 9:08 AM, Burlen Loring wrote: Hi, When I'm using intel compilers cmake is missing some of the internal compiler include paths. Wh

Re: [CMake] cmake with intel compilers

2012-09-23 Thread Leif Walsh
Have you sourced the intel compilervars script in the shell where you invoke cmake? Check $C_INCLUDE_PATH and $CPLUS_INCLUDE_PATH. You may also have better luck setting the CC and CXX env vars rather than setting cmake variables. I remember using the intel compiler with cmake was a hassle. Sen

[CMake] cmake with intel compilers

2012-09-23 Thread Burlen Loring
Hi, When I'm using intel compilers cmake is missing some of the internal compiler include paths. When I use intel compilers with cmake I'm setting CMAKE_CXX_COMPILER and CMAKE_C_COMPILER. One path that's missed is $INTEL_ROOT/include/intel64 which among others contains xmm intriniscs header.

Re: [CMake] CMake/Ninja support in Qt Creator

2012-09-23 Thread Wouter van Kleunen
I had the following idea to speed up the building even more, if a tool can be build in ninja to list all files that need to be stat when building a project. These files can be monitored by qtcreator and later be provided as input again to ninja. So my idea works as follows: 1. Build project

Re: [CMake] GCOV Coverage Testing. Mac OS X with Clang. Getting gcno files, but no gcna files after execution.

2012-09-23 Thread Aaron Smith
figured it out. the gcna files were being put in non-obvious places in the cmake cache dirs. On Sun, Sep 23, 2012 at 1:33 AM, Aaron Smith wrote: > I'm working on a C project and using CMake. I've been trying to get > coverage testing working and am just about there. > > This is what I have figur

[CMake] GCOV Coverage Testing. Mac OS X with Clang. Getting gcno files, but no gcna files after execution.

2012-09-23 Thread Aaron Smith
I'm working on a C project and using CMake. I've been trying to get coverage testing working and am just about there. This is what I have figured out so far: -use clang for c compiler. "gcc" on the latest Xcode does nothing with -fprofile-arcs and -ftest-coverage -add -fprofile-arcs and -ftest-co