Skip to content

Commit 7dc74a9

Browse files
committed
cmake: limit host compiler dpcpp warning divergence
1 parent 9bef39e commit 7dc74a9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

cmake/SDL.cmake

+5-5
Original file line numberDiff line numberDiff line change
@@ -44,28 +44,28 @@ endmacro()
4444
# only. To prevent warnings on users' side who use the library and turn
4545
# this warning on, let's use it too. Applicable for the library sources
4646
# and interfaces only (tests currently rely on that fact heavily)
47-
macro(sdl_gnu_src_ccxx_flags var)
47+
macro(sdl_unix_src_ccxx_flags var)
4848
append(${var} "-Wmissing-field-initializers")
4949
endmacro()
5050

51-
macro(sdl_gnu_example_ccxx_flags var)
51+
macro(sdl_unix_example_ccxx_flags var)
5252
# At this point the flags for src and examples are the same
53-
sdl_gnu_src_ccxx_flags(${var})
53+
sdl_unix_src_ccxx_flags(${var})
5454
endmacro()
5555

5656
set(ONEDNN_SDL_COMPILER_FLAGS)
5757
set(ONEDNN_SDL_LINKER_FLAGS)
5858

5959
if(UNIX)
6060
sdl_unix_common_ccxx_flags(ONEDNN_SDL_COMPILER_FLAGS)
61+
sdl_unix_src_ccxx_flags(CMAKE_SRC_CCXX_FLAGS)
62+
sdl_unix_example_ccxx_flags(CMAKE_EXAMPLE_CCXX_FLAGS)
6163
if(UPPERCASE_CMAKE_BUILD_TYPE STREQUAL "RELEASE")
6264
append(ONEDNN_SDL_COMPILER_FLAGS "-D_FORTIFY_SOURCE=2")
6365
endif()
6466
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
6567
sdl_gnu_common_ccxx_flags(ONEDNN_SDL_COMPILER_FLAGS
6668
CMAKE_CXX_COMPILER_VERSION)
67-
sdl_gnu_src_ccxx_flags(CMAKE_SRC_CCXX_FLAGS)
68-
sdl_gnu_example_ccxx_flags(CMAKE_EXAMPLE_CCXX_FLAGS)
6969
elseif(CMAKE_CXX_COMPILER_ID MATCHES "(Apple)?[Cc]lang")
7070
get_filename_component(CXX_CMD_NAME ${CMAKE_CXX_COMPILER} NAME)
7171
# Fujitsu CXX compiler does not support "-fstack-protector-all".

cmake/host_compiler.cmake

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ if(DPCPP_HOST_COMPILER_KIND MATCHES "^(GNU|CLANG)$")
3535
platform_unix_and_mingw_common_cxx_flags(DPCPP_HOST_COMPILER_OPTS)
3636

3737
sdl_unix_common_ccxx_flags(DPCPP_HOST_COMPILER_OPTS)
38+
sdl_unix_src_ccxx_flags(DPCPP_SRC_COMPILER_OPTS)
39+
sdl_unix_example_ccxx_flags(DPCPP_EXAMPLE_COMPILER_OPTS)
3840

3941
# SYCL uses C++17 features in headers hence C++17 support should be enabled
4042
# for host compiler.
@@ -79,8 +81,6 @@ if(DPCPP_HOST_COMPILER_KIND MATCHES "^(GNU|CLANG)$")
7981
if(DPCPP_HOST_COMPILER_KIND STREQUAL "GNU")
8082
platform_gnu_nowarn_ccxx_flags(DPCPP_CXX_NOWARN_FLAGS ${DPCPP_HOST_COMPILER_MAJOR_VER}.${DPCPP_HOST_COMPILER_MINOR_VER})
8183
sdl_gnu_common_ccxx_flags(DPCPP_HOST_COMPILER_OPTS DPCPP_HOST_COMPILER_VER)
82-
sdl_gnu_src_ccxx_flags(DPCPP_SRC_CXX_FLAGS)
83-
sdl_gnu_example_ccxx_flags(DPCPP_EXAMPLE_CXX_FLAGS)
8484

8585
# SYCL headers contain some comments that trigger warning with GNU compiler
8686
append(DPCPP_HOST_COMPILER_OPTS "-Wno-comment")

0 commit comments

Comments
 (0)