diff options
author | scivision <scivision@users.noreply.github.com> | 2023-10-15 00:47:30 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-10-16 15:11:44 (GMT) |
commit | 957670683dd84b991677d6cd01a2a5307ce00519 (patch) | |
tree | 50da6ba95e6c703d32776bc31b98eba4e835fe82 | |
parent | 0cd2ada2d14e391d8bff89a1f47753ad51a44ab5 (diff) | |
download | CMake-957670683dd84b991677d6cd01a2a5307ce00519.zip CMake-957670683dd84b991677d6cd01a2a5307ce00519.tar.gz CMake-957670683dd84b991677d6cd01a2a5307ce00519.tar.bz2 |
Comeau: Remove undocumented support for this compiler
This appears to be from CMake 2.8 era and was undocumented.
Comeau last release 2008.
-rw-r--r-- | Modules/CMakeCompilerIdDetection.cmake | 5 | ||||
-rw-r--r-- | Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake | 7 |
2 files changed, 0 insertions, 12 deletions
diff --git a/Modules/CMakeCompilerIdDetection.cmake b/Modules/CMakeCompilerIdDetection.cmake index 7eb93e2..e4fa43f 100644 --- a/Modules/CMakeCompilerIdDetection.cmake +++ b/Modules/CMakeCompilerIdDetection.cmake @@ -42,11 +42,6 @@ function(compiler_id_detection outvar lang) # Order is relevant here. For example, compilers which pretend to be # GCC must appear before the actual GCC. - if ("x${lang}" STREQUAL "xCXX") - list(APPEND ordered_compilers - Comeau - ) - endif() list(APPEND ordered_compilers Intel IntelLLVM diff --git a/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake b/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake deleted file mode 100644 index 2265e5e..0000000 --- a/Modules/Compiler/Comeau-CXX-DetermineCompiler.cmake +++ /dev/null @@ -1,7 +0,0 @@ - -set(_compiler_id_pp_test "defined(__COMO__)") - -set(_compiler_id_version_compute " - /* __COMO_VERSION__ = VRR */ -# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__COMO_VERSION__ / 100) -# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__COMO_VERSION__ % 100)") |