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 wondering if it is possible for CMake to run tests like one might run with a configure script. Specifically I want to test if the system I am compiling on has support for the rdtscp instruction.

I am using Linux and if I were using a configure script I could do something like:

cat /proc/cpuinfo | head -n 19 | tail -1 | grep -c rdtscp

which would give me 0 if the rdtscp feature was not present or a 1 if it were. I could then use this to determine whether to #define RDTSCP. I'm wondering if it's possible to do something similar with CMake even if it's not completely portable (I'm only running under Linux I'm not using Visual Studio, etc.).

share|improve this question
Sounds like a bad idea to check this in compile-time as the binary would only work reliably on the machine/CPU you compiled on. It is probably a better approach to detect this in runtime using cpuid instruction (assuming this is x86 you're talking about). – Maister Jan 24 '12 at 21:16
I'm only using this feature for performance analysis during testing, but some systems that I have have support for rdtscp and some don't. I agree that shipping a binary under these circumstances would be a bad idea. – Gabriel Jan 24 '12 at 21:58
1  
Why use -c in the grep? Just do: if sed -n 19p /proc/cpuinfo | grep rdtscp > /dev/null; then echo rdtscp available; fi – William Pursell Jan 25 '12 at 0:11
Thanks, I agree that's better. But the main thing I'm interested in is whether there's a good way to incorporate that with running CMake. I know it would be possible with something like a configure script. – Gabriel Jan 25 '12 at 0:30

1 Answer

up vote 2 down vote accepted
execute_process(COMMAND cat /proc/cpuinfo
    COMMAND head -n 19
    COMMAND tail -1
    COMMAND grep -c rdtscp
    OUTPUT_VARIABLE OUT)
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.