浏览代码

Merge topic 'lcc-major-version'

2a75edb342 LCC: Fix extraction of __LCC__ version components

Acked-by: Kitware Robot <[email protected]>
Merge-request: !8199
Brad King 2 年之前
父节点
当前提交
aec5dd482f
共有 2 个文件被更改,包括 4 次插入8 次删除
  1. 2 4
      Modules/Compiler/LCC-C-DetermineCompiler.cmake
  2. 2 4
      Modules/Compiler/LCC-CXX-DetermineCompiler.cmake

+ 2 - 4
Modules/Compiler/LCC-C-DetermineCompiler.cmake

@@ -2,10 +2,8 @@
 set(_compiler_id_pp_test "defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))")
 
 set(_compiler_id_version_compute "
-# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(1)
-# if defined(__LCC__)
-#  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__LCC__- 100)
-# endif
+# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__LCC__ / 100)
+# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__LCC__ % 100)
 # if defined(__LCC_MINOR__)
 #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__LCC_MINOR__)
 # endif

+ 2 - 4
Modules/Compiler/LCC-CXX-DetermineCompiler.cmake

@@ -2,10 +2,8 @@
 set(_compiler_id_pp_test "defined(__LCC__) && (defined(__GNUC__) || defined(__GNUG__) || defined(__MCST__))")
 
 set(_compiler_id_version_compute "
-# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(1)
-# if defined(__LCC__)
-#  define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__LCC__- 100)
-# endif
+# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__LCC__ / 100)
+# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__LCC__ % 100)
 # if defined(__LCC_MINOR__)
 #  define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__LCC_MINOR__)
 # endif