mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
update wil to 0b2d6c2d822bb301e7558a14ee66d567c14f5dc7
This commit is contained in:
49
Externals/WIL/tests/sanitize-address/CMakeLists.txt
vendored
Normal file
49
Externals/WIL/tests/sanitize-address/CMakeLists.txt
vendored
Normal file
@ -0,0 +1,49 @@
|
||||
|
||||
add_executable(witest.asan)
|
||||
|
||||
target_compile_options(witest.asan PRIVATE -fsanitize=address)
|
||||
|
||||
target_compile_definitions(witest.asan PRIVATE
|
||||
-DCATCH_CONFIG_NO_WINDOWS_SEH # ASAN relies on first chance AVs
|
||||
-DWITEST_ADDRESS_SANITIZER # To conditionally enable/disable code
|
||||
)
|
||||
|
||||
if (CMAKE_CXX_COMPILER_ID MATCHES "Clang")
|
||||
target_compile_definitions(witest.asan PRIVATE
|
||||
# Not compatible with using lld-link
|
||||
-D_DISABLE_VECTOR_ANNOTATION
|
||||
# See below; not compatible with exceptions
|
||||
-DCATCH_CONFIG_DISABLE_EXCEPTIONS
|
||||
)
|
||||
|
||||
# Clang ASan on Windows has issues with exceptions: https://github.com/google/sanitizers/issues/749
|
||||
replace_cxx_flag("/EHsc" "/EHs-c-")
|
||||
|
||||
if ($ENV{Platform} STREQUAL "x86")
|
||||
target_link_libraries(witest.asan PRIVATE
|
||||
clang_rt.asan_dynamic-i386.lib
|
||||
clang_rt.asan_dynamic_runtime_thunk-i386.lib
|
||||
)
|
||||
else()
|
||||
target_link_libraries(witest.asan PRIVATE
|
||||
clang_rt.asan_dynamic-x86_64.lib
|
||||
clang_rt.asan_dynamic_runtime_thunk-x86_64.lib
|
||||
)
|
||||
endif()
|
||||
else()
|
||||
# Using exceptions, so we can compile the STL tests
|
||||
set(EXTRA_SOURCES
|
||||
${EXTRA_SOURCES}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../StlTests.cpp
|
||||
)
|
||||
endif()
|
||||
|
||||
target_sources(witest.asan PUBLIC
|
||||
${COMMON_SOURCES}
|
||||
${EXTRA_SOURCES}
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../TokenHelpersTests.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../UniqueWinRTEventTokenTests.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../WatcherTests.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../WinRTTests.cpp
|
||||
${CMAKE_CURRENT_SOURCE_DIR}/../WinVerifyTrustTest.cpp
|
||||
)
|
Reference in New Issue
Block a user