Disable under certain conditions

This commit is contained in:
Alexey Milovidov 2020-09-10 17:47:02 +03:00
parent 532d121100
commit 65e9c678f8
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
#if defined(__linux__) && defined(__amd64__) && defined(__SSE2__)
#if defined(__linux__) && defined(__amd64__) && defined(__SSE2__) && !defined(SANITIZER) && defined(NDEBUG)
#include <sys/mman.h>
#include <unistd.h>

View File

@ -74,6 +74,7 @@ SRCS(
QueryProfiler.cpp
quoteString.cpp
randomSeed.cpp
remapExecutable.cpp
RemoteHostFilter.cpp
renameat2.cpp
RWLock.cpp