Browse Source

IAR: Fail early in case of IAR ARM 4.XX

This version is not yet supported because it uses xlink unsetad of ilink.
Daniel Schürmann 6 years ago
parent
commit
4d78bea5df
2 changed files with 8 additions and 0 deletions
  1. 4 0
      Modules/Compiler/IAR-C.cmake
  2. 4 0
      Modules/Compiler/IAR-CXX.cmake

+ 4 - 0
Modules/Compiler/IAR-C.cmake

@@ -27,6 +27,10 @@ endif()
 
 # Architecture specific
 if("${CMAKE_C_COMPILER_ARCHITECTURE_ID}" STREQUAL "ARM")
+  if(CMAKE_C_COMPILER_VERSION_INTERNAL VERSION_LESS 7)
+    # IAR ARM 4.X uses xlink.exe, detection is not yet implemented
+    message(FATAL_ERROR "CMAKE_C_COMPILER_VERSION = ${CMAKE_C_COMPILER_VERSION} not supported by CMake.")
+  endif()
   __compiler_iar_ilink(C)
   __compiler_check_default_language_standard(C 1.10 90 6.10 99 8.10 11)
 

+ 4 - 0
Modules/Compiler/IAR-CXX.cmake

@@ -34,6 +34,10 @@ endif()
 
 # Architecture specific
 if("${CMAKE_CXX_COMPILER_ARCHITECTURE_ID}" STREQUAL "ARM")
+  if(CMAKE_CXX_COMPILER_VERSION_INTERNAL VERSION_LESS 7)
+    # IAR ARM 4.X uses xlink.exe, detection is not yet implemented
+    message(FATAL_ERROR "CMAKE_CXX_COMPILER_VERSION = ${CMAKE_C_COMPILER_VERSION} not supported by CMake.")
+  endif()
   __compiler_iar_ilink(CXX)
   __compiler_check_default_language_standard(CXX 6.10 98 8.10 14)