diff --git a/Help/manual/cmake-compile-features.7.rst b/Help/manual/cmake-compile-features.7.rst index 634da10819..658694a9d4 100644 --- a/Help/manual/cmake-compile-features.7.rst +++ b/Help/manual/cmake-compile-features.7.rst @@ -361,6 +361,7 @@ following :variable:`compiler ids _COMPILER_ID>` as of the versions specified for each: * all compilers and versions listed above with only meta-features for C++. +* ``TI``: Texas Instruments compiler. CMake is currently aware of the :prop_tgt:`CUDA standards ` from the following :variable:`compiler ids _COMPILER_ID>` as of the diff --git a/Help/release/dev/ti-c-standard.rst b/Help/release/dev/ti-c-standard.rst new file mode 100644 index 0000000000..8ec739f7d8 --- /dev/null +++ b/Help/release/dev/ti-c-standard.rst @@ -0,0 +1,6 @@ +ti-c-standard +------------- + +* The :manual:`Compile Features ` functionality + is now aware of C language standards supported by Texas Instruments C + compilers. diff --git a/Modules/Compiler/TI-C.cmake b/Modules/Compiler/TI-C.cmake index e149237d42..1c0f4bc1fb 100644 --- a/Modules/Compiler/TI-C.cmake +++ b/Modules/Compiler/TI-C.cmake @@ -2,6 +2,12 @@ set(CMAKE_LIBRARY_PATH_FLAG "--search_path=") set(CMAKE_LINK_LIBRARY_FLAG "--library=") set(CMAKE_INCLUDE_FLAG_C "--include_path=") +set(CMAKE_C90_STANDARD_COMPILE_OPTION "--c89") +set(CMAKE_C90_EXTENSION_COMPILE_OPTION "--c89 --relaxed_ansi") + +set(CMAKE_C99_STANDARD_COMPILE_OPTION "--c99") +set(CMAKE_C99_EXTENSION_COMPILE_OPTION "--c99 --relaxed_ansi") + set(CMAKE_DEPFILE_FLAGS_C "--preproc_with_compile --preproc_dependency=") set(CMAKE_C_CREATE_ASSEMBLY_SOURCE " --compile_only --skip_assembler --c_file= --output_file=")