diff options
| author | Eric Kilmer <eric.d.kilmer@gmail.com> | 2020-10-23 23:54:36 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-23 20:54:36 -0700 |
| commit | 527c0e04332db88a7906e469dca1d9f0a35726fc (patch) | |
| tree | 4a92bf7686f9c8532225f69903c6d658c2145275 /scripts | |
| parent | a97e32fa2de760252ec401f21d82d0cd3dd402c1 (diff) | |
| download | vcpkg-527c0e04332db88a7906e469dca1d9f0a35726fc.tar.gz vcpkg-527c0e04332db88a7906e469dca1d9f0a35726fc.zip | |
Print more verbose compiler detection info (#14188)
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/detect_compiler/CMakeLists.txt | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/detect_compiler/CMakeLists.txt b/scripts/detect_compiler/CMakeLists.txt index da45c98ae..5ae17c5b2 100644 --- a/scripts/detect_compiler/CMakeLists.txt +++ b/scripts/detect_compiler/CMakeLists.txt @@ -16,5 +16,9 @@ file(SHA1 "${CMAKE_C_COMPILER}" C_HASH) string(SHA1 COMPILER_HASH "${C_HASH}${CXX_HASH}")
message("#COMPILER_HASH#${COMPILER_HASH}")
+message("#COMPILER_C_HASH#${C_HASH}")
+message("#COMPILER_C_VERSION#${CMAKE_C_COMPILER_VERSION}")
+message("#COMPILER_C_ID#${CMAKE_C_COMPILER_ID}")
+message("#COMPILER_CXX_HASH#${CXX_HASH}")
message("#COMPILER_CXX_VERSION#${CMAKE_CXX_COMPILER_VERSION}")
message("#COMPILER_CXX_ID#${CMAKE_CXX_COMPILER_ID}")
|
