diff options
author | Chuck Atkins <chuck.atkins@kitware.com> | 2020-12-22 20:07:48 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-03-31 13:14:38 (GMT) |
commit | a55feff69c7967d56e0935d841cf1ea2c980a43a (patch) | |
tree | 4282b5a57c3a20aadc19e0d6a649b53c51ac6f65 /Tests/ExportImport | |
parent | 3c867cff4a98bb198211e3d9f8494fbb478a29e4 (diff) | |
download | CMake-a55feff69c7967d56e0935d841cf1ea2c980a43a.zip CMake-a55feff69c7967d56e0935d841cf1ea2c980a43a.tar.gz CMake-a55feff69c7967d56e0935d841cf1ea2c980a43a.tar.bz2 |
Tests: Update for the Fujitsu compiler
Diffstat (limited to 'Tests/ExportImport')
-rw-r--r-- | Tests/ExportImport/Import/Interface/pch_iface_test.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/ExportImport/Import/Interface/pch_iface_test.cpp b/Tests/ExportImport/Import/Interface/pch_iface_test.cpp index a18bbde..d676a5b 100644 --- a/Tests/ExportImport/Import/Interface/pch_iface_test.cpp +++ b/Tests/ExportImport/Import/Interface/pch_iface_test.cpp @@ -3,7 +3,8 @@ # ifndef PCH_PCH_H_INCLUDED # error "Expected PCH_PCH_H_INCLUDED." # endif -#elif defined(__PGIC__) || defined(__ibmxl__) || defined(_CRAYC) +#elif defined(__PGIC__) || defined(__ibmxl__) || defined(_CRAYC) || \ + defined(__FUJITSU) // No PCH expected but these compilers define macros below. #elif defined(__GNUC__) || defined(__clang__) || defined(_INTEL_COMPILER) || \ defined(_MSC_VER) |