You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
620 B
16 lines
620 B
|
|
set(_compiler_id_pp_test "defined(__SUNPRO_C)")
|
|
|
|
set(_compiler_id_version_compute "
|
|
# if __SUNPRO_C >= 0x5100
|
|
/* __SUNPRO_C = 0xVRRP */
|
|
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>12)
|
|
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xFF)
|
|
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
|
|
# else
|
|
/* __SUNPRO_CC = 0xVRP */
|
|
# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__SUNPRO_C>>8)
|
|
# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__SUNPRO_C>>4 & 0xF)
|
|
# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__SUNPRO_C & 0xF)
|
|
# endif")
|