summaryrefslogtreecommitdiffstats
path: root/Modules/Compiler
diff options
context:
space:
mode:
authorErik Lindahl <erik@kth.se>2014-08-10 20:55:44 (GMT)
committerBrad King <brad.king@kitware.com>2014-08-11 14:31:06 (GMT)
commit0578c283e88c40957c7f43c653dd8c75d8c7782e (patch)
treeb73d42e4c2d88c555c4460de70122dbb547b54fc /Modules/Compiler
parentffc1935a73267cfe74e5d5492c9621ccf6c66112 (diff)
downloadCMake-0578c283e88c40957c7f43c653dd8c75d8c7782e.zip
CMake-0578c283e88c40957c7f43c653dd8c75d8c7782e.tar.gz
CMake-0578c283e88c40957c7f43c653dd8c75d8c7782e.tar.bz2
Add Fujitsu compiler detection
The Fujitsu C/C++ compilers are the default ones for K computer. Detect both native and cross compilers by looking for the __FUJITSU preprocessor definition.
Diffstat (limited to 'Modules/Compiler')
-rw-r--r--Modules/Compiler/Fujitsu-DetermineCompiler.cmake2
1 files changed, 2 insertions, 0 deletions
diff --git a/Modules/Compiler/Fujitsu-DetermineCompiler.cmake b/Modules/Compiler/Fujitsu-DetermineCompiler.cmake
new file mode 100644
index 0000000..73ee38c
--- /dev/null
+++ b/Modules/Compiler/Fujitsu-DetermineCompiler.cmake
@@ -0,0 +1,2 @@
+
+set(_compiler_id_pp_test "defined(__FUJITSU) || defined(__FCC_VERSION) || defined(__fcc_version)")