summaryrefslogtreecommitdiff
path: root/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake
diff options
context:
space:
mode:
Diffstat (limited to 'share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake')
-rwxr-xr-xshare/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake b/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake
new file mode 100755
index 0000000..0340f69
--- /dev/null
+++ b/share/cmake-3.5/Modules/Compiler/ADSP-DetermineCompiler.cmake
@@ -0,0 +1,10 @@
+
+set(_compiler_id_pp_test "defined(__VISUALDSPVERSION__) || defined(__ADSPBLACKFIN__) || defined(__ADSPTS__) || defined(__ADSP21000__)")
+
+set(_compiler_id_version_compute "
+#if defined(__VISUALDSPVERSION__)
+ /* __VISUALDSPVERSION__ = 0xVVRRPP00 */
+# define @PREFIX@COMPILER_VERSION_MAJOR @MACRO_HEX@(__VISUALDSPVERSION__>>24)
+# define @PREFIX@COMPILER_VERSION_MINOR @MACRO_HEX@(__VISUALDSPVERSION__>>16 & 0xFF)
+# define @PREFIX@COMPILER_VERSION_PATCH @MACRO_HEX@(__VISUALDSPVERSION__>>8 & 0xFF)
+#endif")