Is it possible to check the minor version number of GCC in cmake?
I want to do something like this:
If (GCC_MAJOR >= 4 && GCC_MINOR >= 3)
Is it possible to check the minor version number of GCC in cmake?
I want to do something like this:
If (GCC_MAJOR >= 4 && GCC_MINOR >= 3)
Since CMake 2.8.10 there are the CMAKE_C_COMPILER_VERSION
and CMAKE_CXX_COMPILER_VERSION
variables exactly for this purpose so you can do this:
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.2)
Use
if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 4.2)
as mentioned by onqtam. This obsolete answer was back from the 2.6 CMake days.You could rungcc -dumpversion
and parse the output. Here is one way to do that:That would print "4" and "3" for gcc version 4.3.1. However you can use CMake's version checking syntax to make life a bit easier and skip the regex stuff: