summaryrefslogtreecommitdiff
path: root/config_os.h
diff options
context:
space:
mode:
authorTanzinul Islam <11808226+tanzislam@users.noreply.github.com>2021-04-21 18:05:24 +0100
committerGitHub <noreply@github.com>2021-04-21 13:05:24 -0400
commit119999c633b2c81a161c421915852fae0c7cfa8f (patch)
tree86db3e6c05817f09351a7ed3ba6f4f1d0963b5ae /config_os.h
parent8ef3b4b8e78578c31c2d8a30f316e8f32cfb30e7 (diff)
downloadcryptopp-git-119999c633b2c81a161c421915852fae0c7cfa8f.tar.gz
Allow building with Intel oneAPI DPC++/C++ compiler (PR #1027)
Diffstat (limited to 'config_os.h')
-rw-r--r--config_os.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/config_os.h b/config_os.h
index da27de22..c6cd0eae 100644
--- a/config_os.h
+++ b/config_os.h
@@ -29,7 +29,7 @@
// https://www.cryptopp.com/wiki/Release_Process#Self_Tests
// Some relevant bug reports can be found at:
// * Clang: http://github.com/weidai11/cryptopp/issues/147
-#if (defined(_MSC_VER) && defined(__clang__) && !(defined( __clang_analyzer__)))
+#if (defined(_MSC_VER) && defined(__clang__) && !(defined( __clang_analyzer__)) && !defined(__INTEL_LLVM_COMPILER))
# error: "Unsupported configuration"
#endif