mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #50539 from ClickHouse/skim-msan
Disable skim (Rust library) under memory sanitizer
This commit is contained in:
commit
b8f9a57797
@ -14,6 +14,11 @@ if (OS_FREEBSD)
|
|||||||
return()
|
return()
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
|
if (SANITIZE STREQUAL "memory")
|
||||||
|
message(STATUS "skim is disabled under memory sanitizer, because the interop is not instrumented properly")
|
||||||
|
return()
|
||||||
|
endif()
|
||||||
|
|
||||||
clickhouse_import_crate(MANIFEST_PATH Cargo.toml)
|
clickhouse_import_crate(MANIFEST_PATH Cargo.toml)
|
||||||
|
|
||||||
# -Wno-dollar-in-identifier-extension: cxx bridge complies names with '$'
|
# -Wno-dollar-in-identifier-extension: cxx bridge complies names with '$'
|
||||||
|
Loading…
Reference in New Issue
Block a user