diff options
author | makise-homura <akemi_homura@kurisa.ch> | 2024-01-15 00:06:31 (GMT) |
---|---|---|
committer | makise-homura <akemi_homura@kurisa.ch> | 2024-01-16 04:18:51 (GMT) |
commit | 59eb9ddecf6d504e59a77c42df3ea4a7995731c1 (patch) | |
tree | 876b0a25abd5c2080f223c15320e103e211a74c1 | |
parent | 76db09fd750dbb6929366b7a4664f210bcf71d66 (diff) | |
download | CMake-59eb9ddecf6d504e59a77c42df3ea4a7995731c1.zip CMake-59eb9ddecf6d504e59a77c42df3ea4a7995731c1.tar.gz CMake-59eb9ddecf6d504e59a77c42df3ea4a7995731c1.tar.bz2 |
LCC: Correct C compiler default C standards
-rw-r--r-- | Modules/Compiler/LCC-C.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Compiler/LCC-C.cmake b/Modules/Compiler/LCC-C.cmake index 99f791f..52c3bf3 100644 --- a/Modules/Compiler/LCC-C.cmake +++ b/Modules/Compiler/LCC-C.cmake @@ -33,4 +33,4 @@ if(CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 1.26) set(CMAKE_C17_EXTENSION_COMPILE_OPTION "-std=gnu17") endif() -__compiler_check_default_language_standard(C 1.23 90 1.20 11 1.26 17) +__compiler_check_default_language_standard(C 1.17 89 1.23 99 1.26 17) |