Skip to content

Commit fb54a75

Browse files
committedNov 24, 2024··
ci: use hyperscan on win64 and oracle8, else use vectorscan
1 parent eef094c commit fb54a75

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed
 

‎.github/workflows/ci-build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
check_container: oraclelinux:8
6969
container_root: docker/oracle8
7070
container: variar/klogg_oracle8
71-
cmake_opts: -DCMAKE_BUILD_WITH_INSTALL_RPATH=on
71+
cmake_opts: -DCMAKE_BUILD_WITH_INSTALL_RPATH=on -DKLOGG_USE_VECTORSCAN=OFF -DKLOGG_USE_HYPERSCAN=ON
7272

7373
- os: ubuntu_focal
7474
os_version: 20.04

‎CMakeLists.txt

-5
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,8 @@ if(WIN32)
3636
option(KLOGG_USE_VECTORSCAN "Use Vectorscan" OFF)
3737
endif()
3838
else()
39-
if(CMAKE_HOST_SYSTEM_PROCESSOR MATCHES "arm64")
4039
option(KLOGG_USE_HYPERSCAN "Use Hyperscan" OFF)
4140
option(KLOGG_USE_VECTORSCAN "Use Vectorscan" ON)
42-
else()
43-
option(KLOGG_USE_HYPERSCAN "Use Hyperscan" ON)
44-
option(KLOGG_USE_VECTORSCAN "Use Vectorscan" OFF)
45-
endif()
4641
endif()
4742

4843
set(BUILD_VERSION

0 commit comments

Comments
 (0)
Please sign in to comment.