diff options
author | Erik Lindahl <erik@kth.se> | 2014-08-10 20:55:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-08-11 14:31:06 (GMT) |
commit | 0578c283e88c40957c7f43c653dd8c75d8c7782e (patch) | |
tree | b73d42e4c2d88c555c4460de70122dbb547b54fc /Modules/Compiler | |
parent | ffc1935a73267cfe74e5d5492c9621ccf6c66112 (diff) | |
download | CMake-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.cmake | 2 |
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)") |