summaryrefslogtreecommitdiffstats
path: root/config/sanitizer/sanitizers.cmake
diff options
context:
space:
mode:
authorAllen Byrne <50328838+byrnHDF@users.noreply.github.com>2022-01-24 13:46:17 (GMT)
committerGitHub <noreply@github.com>2022-01-24 13:46:17 (GMT)
commit4d45d05078fb1f67cc449fd5a6826c6dcfe55bfe (patch)
treee54b0944d8943947e7505d86a79fe71e6a1c9ba9 /config/sanitizer/sanitizers.cmake
parent99d3962a831167298ebc087f0b8e8b6209034d95 (diff)
downloadhdf5-4d45d05078fb1f67cc449fd5a6826c6dcfe55bfe.zip
hdf5-4d45d05078fb1f67cc449fd5a6826c6dcfe55bfe.tar.gz
hdf5-4d45d05078fb1f67cc449fd5a6826c6dcfe55bfe.tar.bz2
Fix cmake dynamic analysis on windows (#1373)
* Fix sanitizer flag form on windows * Add search paths to windows code-coverage
Diffstat (limited to 'config/sanitizer/sanitizers.cmake')
-rw-r--r--config/sanitizer/sanitizers.cmake11
1 files changed, 10 insertions, 1 deletions
diff --git a/config/sanitizer/sanitizers.cmake b/config/sanitizer/sanitizers.cmake
index 8bf1d5b..b06992f 100644
--- a/config/sanitizer/sanitizers.cmake
+++ b/config/sanitizer/sanitizers.cmake
@@ -83,12 +83,21 @@ if(USE_SANITIZER)
elseif(MSVC)
if(USE_SANITIZER MATCHES "([Aa]ddress)")
message(STATUS "Building with Address sanitizer")
- append("/fsanitize=address" CMAKE_C_SANITIZER_FLAGS CMAKE_CXX_SANITIZER_FLAGS)
+ append("-fsanitize=address" CMAKE_C_SANITIZER_FLAGS CMAKE_CXX_SANITIZER_FLAGS)
else()
message(FATAL_ERROR "This sanitizer not yet supported in the MSVC environment: ${USE_SANITIZER}")
endif()
else()
message(FATAL_ERROR "USE_SANITIZER is not supported on this platform.")
endif()
+ elseif(MSVC)
+ if(USE_SANITIZER MATCHES "([Aa]ddress)")
+ message(STATUS "Building with Address sanitizer")
+ append("/fsanitize=address" CMAKE_C_SANITIZER_FLAGS CMAKE_CXX_SANITIZER_FLAGS)
+ else()
+ message(FATAL_ERROR "This sanitizer not yet supported in the MSVC environment: ${USE_SANITIZER}")
+ endif()
+ else()
+ message(FATAL_ERROR "USE_SANITIZER is not supported on this platform.")
endif()
endif()