summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler/SunPro-C-DetermineCompiler.cmake
blob: 7db1a971a789c383cd7a00dd012741e3cb366e7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

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 HEX(__SUNPRO_C>>12)
#  define @PREFIX@COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xFF)
#  define @PREFIX@COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)
# else
   /* __SUNPRO_CC = 0xVRP */
#  define @PREFIX@COMPILER_VERSION_MAJOR HEX(__SUNPRO_C>>8)
#  define @PREFIX@COMPILER_VERSION_MINOR HEX(__SUNPRO_C>>4 & 0xF)
#  define @PREFIX@COMPILER_VERSION_PATCH HEX(__SUNPRO_C    & 0xF)
# endif")