aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaef Coles <raef.coles@arm.com>2020-09-28 09:59:04 +0100
committerRaef Coles <raef.coles@arm.com>2020-09-28 09:59:04 +0100
commit8d30725e02c068f62c19309ad5fd4fee5123caac (patch)
tree5ab437f34c13a2c3c36fff15c9af3cdea2b5d0ff
parent5e8ea8413ea82e2fd5e0b26ef48190753b6f4e63 (diff)
downloadtrusted-firmware-m-8d30725e02c068f62c19309ad5fd4fee5123caac.tar.gz
Build: Remove compiler version check
Not actually necessary, and has a bug in it that causes issues with armclang. Change-Id: Iec55dd1a33d03607be90b9c4552eeef9368251fc Signed-off-by: Raef Coles <raef.coles@arm.com>
-rw-r--r--CMakeLists.txt8
1 files changed, 0 insertions, 8 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 87fbe0660b..e00790a45c 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -21,14 +21,6 @@ if (NOT CMAKE_BUILD_TYPE)
endif()
if(
- NOT ${CMAKE_C_COMPILER_ID} STREQUAL "GNU" AND
- NOT ${CMAKE_C_COMPILER_ID} STREQUAL "ARMclang" AND
- NOT ${CMAKE_C_COMPILER_ID} STREQUAL "IAR"
-)
- Message(FATAL_ERROR "unsupported c compiler ${CMAKE_C_COMPILER_ID}")
-endif()
-
-if(
NOT ${CMAKE_GENERATOR} STREQUAL "Unix Makefiles" AND
NOT ${CMAKE_GENERATOR} STREQUAL "Ninja"
)