@@ -44,28 +44,28 @@ endmacro()
44
44
# only. To prevent warnings on users' side who use the library and turn
45
45
# this warning on, let's use it too. Applicable for the library sources
46
46
# 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)
48
48
append (${var} "-Wmissing-field-initializers" )
49
49
endmacro ()
50
50
51
- macro (sdl_gnu_example_ccxx_flags var)
51
+ macro (sdl_unix_example_ccxx_flags var)
52
52
# 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} )
54
54
endmacro ()
55
55
56
56
set (ONEDNN_SDL_COMPILER_FLAGS)
57
57
set (ONEDNN_SDL_LINKER_FLAGS)
58
58
59
59
if (UNIX )
60
60
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)
61
63
if (UPPERCASE_CMAKE_BUILD_TYPE STREQUAL "RELEASE" )
62
64
append (ONEDNN_SDL_COMPILER_FLAGS "-D_FORTIFY_SOURCE=2" )
63
65
endif ()
64
66
if ("${CMAKE_CXX_COMPILER_ID} " STREQUAL "GNU" )
65
67
sdl_gnu_common_ccxx_flags(ONEDNN_SDL_COMPILER_FLAGS
66
68
CMAKE_CXX_COMPILER_VERSION)
67
- sdl_gnu_src_ccxx_flags(CMAKE_SRC_CCXX_FLAGS)
68
- sdl_gnu_example_ccxx_flags(CMAKE_EXAMPLE_CCXX_FLAGS)
69
69
elseif (CMAKE_CXX_COMPILER_ID MATCHES "(Apple)?[Cc]lang" )
70
70
get_filename_component (CXX_CMD_NAME ${CMAKE_CXX_COMPILER} NAME )
71
71
# Fujitsu CXX compiler does not support "-fstack-protector-all".
0 commit comments