mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-01 20:00:51 -05:00
7f0f382c55
Provide it whenever we can detect a target architecture from the compiler during compiler inspection. In order to avoid changing existing IDs, do this only for compilers where we don't already detect a target architecture during compiler identification. Fixes: #17702
6 lines
319 B
CMake
6 lines
319 B
CMake
enable_language(CXX)
|
|
message(STATUS "CMAKE_CXX_COMPILER='${CMAKE_CXX_COMPILER}'")
|
|
message(STATUS "CMAKE_CXX_COMPILER_ID='${CMAKE_CXX_COMPILER_ID}'")
|
|
message(STATUS "CMAKE_CXX_COMPILER_VERSION='${CMAKE_CXX_COMPILER_VERSION}'")
|
|
message(STATUS "CMAKE_CXX_COMPILER_ARCHITECTURE_ID='${CMAKE_CXX_COMPILER_ARCHITECTURE_ID}'")
|