We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent acf3f69 commit 8a20d91Copy full SHA for 8a20d91
1 file changed
cpp/cmake_modules/san-config.cmake
@@ -94,8 +94,9 @@ if ("${ARROW_USE_UBSAN}" OR "${ARROW_USE_ASAN}" OR "${ARROW_USE_TSAN}")
94
# Require clang 3.4 or newer; clang 3.3 has issues with TSAN and pthread
95
# symbol interception.
96
if("${COMPILER_VERSION}" VERSION_LESS "3.4")
97
- message(SEND_ERROR "Must use clang 3.4 or newer to run a sanitizer build."
98
- " Try using clang from $NATIVE_TOOLCHAIN/")
+ message(SEND_ERROR "Must use clang 3.4 or newer to run a sanitizer build."
+ " Detected unsupported version ${COMPILER_VERSION}."
99
+ " Try using clang from $NATIVE_TOOLCHAIN/.")
100
endif()
101
add_definitions("-fsanitize-blacklist=${BUILD_SUPPORT_DIR}/sanitize-blacklist.txt")
102
else()
0 commit comments