From 43365afa436a7233c136f9644de1177b4801d35b Mon Sep 17 00:00:00 2001 From: Gaurav Aggarwal Date: Mon, 27 Mar 2023 04:20:45 +0000 Subject: [PATCH] Remove C90 requirement from CMakeLists This is needed as it is breaking projects - https://forums.freertos.org/t/freertos-gcc-cmake/16984 We will re-evaluate and accordingly add this later. Signed-off-by: Gaurav Aggarwal --- CMakeLists.txt | 2 -- 1 file changed, 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6d83db88b9..d45de64b1b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -292,5 +292,3 @@ target_link_libraries(freertos_kernel ) ######################################################################## -# Requirements -set_property(TARGET freertos_kernel PROPERTY C_STANDARD 90)