mirror of
https://github.com/reactos/CMake.git
synced 2025-05-13 18:15:53 +00:00

Revert commit eb1a9be4b6 (XL: Recognize compilers identified by __ibmxl__, 2018-03-05, v3.11.0-rc3~4^2). It is no longer needed because we now use `__ibmxl__` to identify with compiler id `XLClang`.
7 lines
267 B
CMake
7 lines
267 B
CMake
|
|
set(_compiler_id_version_compute "
|
|
/* __IBMC__ = VRP */
|
|
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_DEC@(__IBMC__/100)
|
|
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_DEC@(__IBMC__/10 % 10)
|
|
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_DEC@(__IBMC__ % 10)")
|