summaryrefslogtreecommitdiff
path: root/Modules/CMakeDetermineOBJCXXCompiler.cmake
diff options
context:
space:
mode:
authorRobert Maynard <robert.maynard@kitware.com>2020-03-25 10:05:06 -0400
committerRobert Maynard <robert.maynard@kitware.com>2020-03-30 17:08:01 -0400
commitc5dd2ca53890c2ebc469594bbcd6af1796225814 (patch)
tree802a7b871db12640bb086a820cae6bbafb470484 /Modules/CMakeDetermineOBJCXXCompiler.cmake
parent888b8a43d82e6f6157642c2bd84520920d8e2d11 (diff)
downloadcmake-c5dd2ca53890c2ebc469594bbcd6af1796225814.tar.gz
DetermineCompiler: Relax _CMAKE_TOOLCHAIN_PREFIX detection
Now detect _CMAKE_TOOLCHAIN_PREFIX whenever a compilers name matches the heuristics, instead of only doing it when cross compiling
Diffstat (limited to 'Modules/CMakeDetermineOBJCXXCompiler.cmake')
-rw-r--r--Modules/CMakeDetermineOBJCXXCompiler.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/CMakeDetermineOBJCXXCompiler.cmake b/Modules/CMakeDetermineOBJCXXCompiler.cmake
index 60fcbb3f51..2cf5119b6d 100644
--- a/Modules/CMakeDetermineOBJCXXCompiler.cmake
+++ b/Modules/CMakeDetermineOBJCXXCompiler.cmake
@@ -145,7 +145,7 @@ endif ()
# "arm-unknown-nto-qnx6" instead of the correct "arm-unknown-nto-qnx6.3.0-"
-if (CMAKE_CROSSCOMPILING AND NOT _CMAKE_TOOLCHAIN_PREFIX)
+if (NOT _CMAKE_TOOLCHAIN_PREFIX)
if("${CMAKE_OBJCXX_COMPILER_ID}" MATCHES "GNU|Clang|QCC")
get_filename_component(COMPILER_BASENAME "${CMAKE_OBJCXX_COMPILER}" NAME)