summaryrefslogtreecommitdiffstats
path: root/build_settings.cmake
diff options
context:
space:
mode:
authorTor Brede Vekterli <vekterli@yahooinc.com>2022-03-25 11:59:23 +0000
committerTor Brede Vekterli <vekterli@yahooinc.com>2022-03-25 11:59:23 +0000
commit1193a42059bae4bd140e9264e22bacd6e41a8e40 (patch)
tree4b83f8bd990122185de5448c21a86081b4cc66eb /build_settings.cmake
parentba214e38d46c2e5805724f94cfd88b93cd92ffd2 (diff)
Add UBSan to printed list of accepted sanitizers
Diffstat (limited to 'build_settings.cmake')
-rw-r--r--build_settings.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_settings.cmake b/build_settings.cmake
index 185f93e1b1e..272242ecc5c 100644
--- a/build_settings.cmake
+++ b/build_settings.cmake
@@ -7,7 +7,7 @@ if (VESPA_USE_SANITIZER)
if (VESPA_USE_SANITIZER STREQUAL "address" OR VESPA_USE_SANITIZER STREQUAL "thread" OR VESPA_USE_SANITIZER STREQUAL "undefined")
message("-- Instrumenting code using ${VESPA_USE_SANITIZER} sanitizer")
else()
- message(FATAL_ERROR "Unsupported sanitizer option '${VESPA_USE_SANITIZER}'. Supported: 'address' or 'thread'")
+ message(FATAL_ERROR "Unsupported sanitizer option '${VESPA_USE_SANITIZER}'. Supported: 'address', 'thread' or 'undefined'")
endif()
endif()