Skip to content

Commit 0bc86cf

Browse files
committed
build: enabled __cplusplus preprocessor macro for MSVC compiler
MSVC does not define __cplusplus macro by default. This results in oneDNN failing to build with C++ 17 and C++ 20 flags.
1 parent 6602131 commit 0bc86cf

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cmake/platform.cmake

+2
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ if(MSVC)
138138
append(CMAKE_CCXX_FLAGS "/Zc:preprocessor")
139139
# Set UTF-8 as default encoding to be consistent with other compilers
140140
append(CMAKE_CCXX_FLAGS "/utf-8")
141+
# Enable __cplusplus macro to align behavior with other compilers
142+
append(CMAKE_CCXX_FLAGS "/Zc:__cplusplus")
141143
# int64_t -> int (tent)
142144
append(CMAKE_CCXX_NOWARN_FLAGS "/wd4244")
143145
# workaround: macro outputs defined token in msvs header

0 commit comments

Comments
 (0)