diff options
author | thegeorg <thegeorg@yandex-team.com> | 2022-12-15 19:25:15 +0300 |
---|---|---|
committer | thegeorg <thegeorg@yandex-team.com> | 2022-12-15 19:25:15 +0300 |
commit | 0c31d97afd7858af5f8f858c8addf91655ca9ccc (patch) | |
tree | 4d8a246db168f7beaafcd06d486c034115c2123d /contrib/libs/hyperscan | |
parent | d1d5f5e00df0dd6efc00880dd8283477fc643aaf (diff) | |
download | ydb-0c31d97afd7858af5f8f858c8addf91655ca9ccc.tar.gz |
Sync linux-headers instead of using system ones
Diffstat (limited to 'contrib/libs/hyperscan')
5 files changed, 13 insertions, 0 deletions
diff --git a/contrib/libs/hyperscan/CMakeLists.linux.txt b/contrib/libs/hyperscan/CMakeLists.linux.txt index 6579918b63..e6ce83f1d6 100644 --- a/contrib/libs/hyperscan/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/CMakeLists.linux.txt @@ -22,6 +22,7 @@ target_include_directories(contrib-libs-hyperscan PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src ) target_link_libraries(contrib-libs-hyperscan PUBLIC + contrib-libs-linux-headers contrib-libs-cxxsupp restricted-boost-dynamic_bitset restricted-boost-graph diff --git a/contrib/libs/hyperscan/runtime_avx2/CMakeLists.linux.txt b/contrib/libs/hyperscan/runtime_avx2/CMakeLists.linux.txt index 03290e1358..e8ffadb5db 100644 --- a/contrib/libs/hyperscan/runtime_avx2/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/runtime_avx2/CMakeLists.linux.txt @@ -436,6 +436,9 @@ target_include_directories(libs-hyperscan-runtime_avx2 PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src ) +target_link_libraries(libs-hyperscan-runtime_avx2 PUBLIC + contrib-libs-linux-headers +) target_sources(libs-hyperscan-runtime_avx2 PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src/alloc.c ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src/crc32.c diff --git a/contrib/libs/hyperscan/runtime_avx512/CMakeLists.linux.txt b/contrib/libs/hyperscan/runtime_avx512/CMakeLists.linux.txt index 322a106b42..66b19f1385 100644 --- a/contrib/libs/hyperscan/runtime_avx512/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/runtime_avx512/CMakeLists.linux.txt @@ -442,6 +442,9 @@ target_include_directories(libs-hyperscan-runtime_avx512 PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src ) +target_link_libraries(libs-hyperscan-runtime_avx512 PUBLIC + contrib-libs-linux-headers +) target_sources(libs-hyperscan-runtime_avx512 PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src/alloc.c ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src/crc32.c diff --git a/contrib/libs/hyperscan/runtime_core2/CMakeLists.linux.txt b/contrib/libs/hyperscan/runtime_core2/CMakeLists.linux.txt index ab19c27720..aae508270d 100644 --- a/contrib/libs/hyperscan/runtime_core2/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/runtime_core2/CMakeLists.linux.txt @@ -423,6 +423,9 @@ target_include_directories(libs-hyperscan-runtime_core2 PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src ) +target_link_libraries(libs-hyperscan-runtime_core2 PUBLIC + contrib-libs-linux-headers +) target_sources(libs-hyperscan-runtime_core2 PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src/alloc.c ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src/crc32.c diff --git a/contrib/libs/hyperscan/runtime_corei7/CMakeLists.linux.txt b/contrib/libs/hyperscan/runtime_corei7/CMakeLists.linux.txt index 77b4d7fd96..c4ce3aa484 100644 --- a/contrib/libs/hyperscan/runtime_corei7/CMakeLists.linux.txt +++ b/contrib/libs/hyperscan/runtime_corei7/CMakeLists.linux.txt @@ -429,6 +429,9 @@ target_include_directories(libs-hyperscan-runtime_corei7 PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src ) +target_link_libraries(libs-hyperscan-runtime_corei7 PUBLIC + contrib-libs-linux-headers +) target_sources(libs-hyperscan-runtime_corei7 PRIVATE ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src/alloc.c ${CMAKE_SOURCE_DIR}/contrib/libs/hyperscan/src/crc32.c |