aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrobot-piglet <robot-piglet@yandex-team.com>2024-11-15 14:19:49 +0300
committerrobot-piglet <robot-piglet@yandex-team.com>2024-11-15 14:31:03 +0300
commit67b62bf7ad03d89c7c447a4013734e26912903c7 (patch)
treeff04c25dc05b2659cdf662a18a42e750e1b8623c
parent63e58b6e405f754c634aac8411c84da160b4c574 (diff)
downloadydb-67b62bf7ad03d89c7c447a4013734e26912903c7.tar.gz
Intermediate changes
commit_hash:1aefee359cc53471118d5354ffae0495229716df
-rw-r--r--contrib/libs/hyperscan/.yandex_meta/__init__.py5
-rw-r--r--contrib/libs/hyperscan/runtime_avx512/ya.make2
2 files changed, 0 insertions, 7 deletions
diff --git a/contrib/libs/hyperscan/.yandex_meta/__init__.py b/contrib/libs/hyperscan/.yandex_meta/__init__.py
index 82a4450293..c56235d3b4 100644
--- a/contrib/libs/hyperscan/.yandex_meta/__init__.py
+++ b/contrib/libs/hyperscan/.yandex_meta/__init__.py
@@ -103,11 +103,6 @@ def post_install(self):
for runtime_name in RUNTIMES.keys():
instantiate_runtime(self, runtime_name=runtime_name, runtime_yamake=runtime_yamake)
- with self.yamakes["runtime_avx512"] as m:
- # Do not sanitize to workaround the ICE in clang-16
- # See DEVTOOLSSUPPORT-49258 for details.
- m.NO_SANITIZE = True
-
with self.yamakes["."] as hyperscan:
hyperscan.RECURSE = [f"runtime_{name}" for name in sorted(RUNTIMES.keys())]
# rename make_unique into std::make_unique to resolve ambigousness with boost::make_unique
diff --git a/contrib/libs/hyperscan/runtime_avx512/ya.make b/contrib/libs/hyperscan/runtime_avx512/ya.make
index 402f020dfc..328de4c598 100644
--- a/contrib/libs/hyperscan/runtime_avx512/ya.make
+++ b/contrib/libs/hyperscan/runtime_avx512/ya.make
@@ -17,8 +17,6 @@ NO_COMPILER_WARNINGS()
NO_RUNTIME()
-NO_SANITIZE()
-
CFLAGS(
${SSE41_CFLAGS}
-DHAVE_SSE41