File: UseCompVer.cmake

package info (click to toggle)
opm-common 2024.10%2Bds-5
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 98,420 kB
  • sloc: cpp: 263,013; python: 3,155; sh: 198; xml: 174; pascal: 136; makefile: 12
file content (107 lines) | stat: -rw-r--r-- 3,803 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
# - Get compiler version

# probe the GCC version, returns empty string if GCC is not compiler
function (get_gcc_version language ver_name)
  if(CMAKE_${language}_COMPILER_ID STREQUAL GNU)  
    execute_process (
      COMMAND ${CMAKE_${language}_COMPILER} ${CMAKE_${language}_COMPILER_ARG1} -dumpversion
      OUTPUT_VARIABLE _version
    )
    set (${ver_name} ${_version} PARENT_SCOPE)
  else (CMAKE_${language}_COMPILER_ID STREQUAL GNU)
    set (${ver_name} "" PARENT_SCOPE)
  endif (CMAKE_${language}_COMPILER_ID STREQUAL GNU)
endfunction (get_gcc_version ver_name)

# less reliable, but includes the patch number
function (get_gcc_patch language ver_name)
  if(CMAKE_${language}_COMPILER_ID STREQUAL GNU)
    execute_process (
      COMMAND ${CMAKE_${language}_COMPILER} ${CMAKE_${language}_COMPILER_ARG1} --version
      OUTPUT_VARIABLE _version
    )
    # split multi-line string into list
    if (WIN32)
      string (REPLACE "\r\n" ";" _version "${_version}")
    else (WIN32)
      string (REPLACE "\n" ";" _version "${_version}")
    endif (WIN32)
    # only keep first line
    list (GET _version 0 _version)
    # extract version number from it (this is the fragile part)
    string (REGEX REPLACE "^[^\\(]+(\\([^\\)]*\\))?[\ \t]*([0-9]+\\.[0-9]+\\.[0-9]+)(.*\\(.*\\))?" "\\2" _version "${_version}")
    # return this to the caller
    set (${ver_name} ${_version} PARENT_SCOPE)
  else (CMAKE_${language}_COMPILER_ID STREQUAL GNU)
    set (${ver_name} "" PARENT_SCOPE)
  endif (CMAKE_${language}_COMPILER_ID STREQUAL GNU)
endfunction (get_gcc_patch language ver_name)

function (compiler_info)
  if (CMAKE_COMPILER_IS_GNUCXX)
    get_gcc_patch (CXX version)
    message (STATUS "GNU C++ compiler version: ${version}")
  endif (CMAKE_COMPILER_IS_GNUCXX)
endfunction (compiler_info)

function (get_ld_version ver_name)
  # run linker to get the version number. interestingly, this option works
  # (for our purposes) on all major platforms (Linux, Mac OS X and Windows);
  # it returns the program version although it may have ended in error
  execute_process (
    COMMAND ${CMAKE_LINKER} -v
    OUTPUT_VARIABLE _version
    ERROR_VARIABLE _version
  )

  # keep only first line, even on Mac OS X there is no line end
  list (GET _version 0 _version)

  # format of the version string is platform-specific
  if (NOT WIN32)
    if (APPLE)
      string (REGEX REPLACE ".*, from Apple (.*\)" "\\1" _version "${_version}")
    else (APPLE)
      # assuming some GNU toolchain now
      string (REGEX REPLACE "GNU ([a-zA-Z0-9_]*) (version|\\(.*\\)) ([^\\ ]*).*" "\\1 \\3" _version "${_version}")
    endif (APPLE)
  endif (NOT WIN32)

  # return the string to the caller
  set (${ver_name} "${_version}" PARENT_SCOPE)
endfunction (get_ld_version ver_name)

function (linker_info)
  get_ld_version (version)
  message (STATUS "Linker: ${version}")
endfunction (linker_info)

# sets CXX_COMPAT_GCC if we have either GCC or Clang
macro (is_compiler_gcc_compatible)
  # is the C++ compiler clang++?
  string (TOUPPER "${CMAKE_CXX_COMPILER_ID}" _comp_id)
  if (_comp_id MATCHES "CLANG")
    set (CMAKE_COMPILER_IS_CLANGXX TRUE)
  else ()
    set (CMAKE_COMPILER_IS_CLANGXX FALSE)
  endif ()
  # is the C++ compiler g++ or clang++?
  if (CMAKE_COMPILER_IS_GNUCXX OR CMAKE_COMPILER_IS_CLANGXX)
    set (CXX_COMPAT_GCC TRUE)
  else ()
    set (CXX_COMPAT_GCC FALSE)
  endif ()
  # is the C compiler clang?
  string (TOUPPER "${CMAKE_C_COMPILER_ID}" _comp_id)
  if (_comp_id MATCHES "CLANG")
    set (CMAKE_COMPILER_IS_CLANG TRUE)
  else ()
    set (CMAKE_COMPILER_IS_CLANG FALSE)
  endif ()
  # is the C compiler gcc or clang?
  if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_CLANG)
    set (C_COMPAT_GCC TRUE)
  else ()
    set (C_COMPAT_GCC FALSE)
  endif ()
endmacro (is_compiler_gcc_compatible)