mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 22:30:07 -05:00
Compiler ID: Compiler versions must be a valid, numeric version string.
This test helps catch errors in compiler identification.
This commit is contained in:
@@ -12,3 +12,10 @@ foreach(v
|
||||
message(SEND_ERROR "${v} not set!")
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
# Version numbers may only contain numbers and periods.
|
||||
if(NOT CMAKE_C_COMPILER_VERSION MATCHES
|
||||
"^([0-9]+)(\\.([0-9]+))?(\\.([0-9]+))?(\\.([0-9]+))?$"
|
||||
)
|
||||
message(SEND_ERROR "Compiler version is not numeric!")
|
||||
endif()
|
||||
|
||||
@@ -12,3 +12,10 @@ foreach(v
|
||||
message(SEND_ERROR "${v} not set!")
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
# Version numbers may only contain numbers and periods.
|
||||
if(NOT CMAKE_CXX_COMPILER_VERSION MATCHES
|
||||
"^([0-9]+)(\\.([0-9]+))?(\\.([0-9]+))?(\\.([0-9]+))?$"
|
||||
)
|
||||
message(SEND_ERROR "Compiler version is not numeric!")
|
||||
endif()
|
||||
|
||||
@@ -12,3 +12,10 @@ foreach(v
|
||||
message(SEND_ERROR "${v} not set!")
|
||||
endif()
|
||||
endforeach()
|
||||
|
||||
# Version numbers may only contain numbers and periods.
|
||||
if(NOT CMAKE_Fortran_COMPILER_VERSION MATCHES
|
||||
"^([0-9]+)(\\.([0-9]+))?(\\.([0-9]+))?(\\.([0-9]+))?$"
|
||||
)
|
||||
message(SEND_ERROR "Compiler version is not numeric!")
|
||||
endif()
|
||||
|
||||
Reference in New Issue
Block a user