Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for 5.4.10 #167

Merged
merged 31 commits into from
Sep 7, 2023
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
8f26c5e
Fix compilation with libcxx 16
rschu1ze Mar 28, 2023
d054911
Merge pull request #144 from rschu1ze/rs/fix-libcxx16
markos Mar 29, 2023
8a54576
Use std::vector instead of boost::container::small_vector under MSan
azat May 10, 2023
07305d1
Fix use-of-uninitialized-value due to getData128()
azat May 10, 2023
4fbabb6
Merge pull request #148 from azat-ch/getData128-msan
markos May 23, 2023
38431d1
Merge pull request #149 from azat-ch/small-vector-msan
markos May 23, 2023
68db36f
initial attempt for fat binary on Aarch64
Aug 23, 2023
0ec7b4e
fix SVE flags detection order #145
Aug 23, 2023
4bc70b3
adding ifndef around HS_PUBLIC_API definition so that vectorscan can …
jeffplaisance Jun 27, 2023
b6b69a4
Merge pull request #165 from VectorCamp/feature/enable-fat-runtime-arm
markos Sep 4, 2023
75dbede
Merge pull request #164 from jeffplaisance/develop
markos Sep 4, 2023
978105a
klocwork: fix risk issues
hongyang7 May 31, 2022
762f405
gcc-10(and above): fix compile issue caused by stringop-overflow
hongyang7 Jul 5, 2022
7c1835c
stringop-overflow compatible fix
hongyang7 Jul 12, 2022
684f0ce
UTF-8 validation: fix one cotec check corner issue
hongyang7 Jul 28, 2022
b7ee910
update year 2022
hongyang7 Aug 1, 2022
fc5a423
Fix cmake CMP0115 warning for CMake 3.20 and above
hongyang7 Aug 2, 2022
941cc71
Silence clang-14 warnings
hongyang7 Aug 15, 2022
6595254
stream close: free stream to avoid memory leak
hongyang7 Oct 19, 2022
7f2f7d2
scratch: add quick validity check
hongyang7 Oct 20, 2022
91f0cb6
fix nfa dump error
hongyang7 Oct 20, 2022
6765b35
bugfix: add vbmi platform parameter for tests in single.cpp
hongyang7 Jun 7, 2021
4fb3a48
bugfix: add vbmi case for test in database.cpp
hongyang7 Jun 7, 2021
dc78dc1
sanitiser bugfix
hongyang7 Dec 29, 2021
ab4f837
changelog: updates for 5.4.1 release
fatchanghao Feb 21, 2023
c652345
scratch: remove quick validity check
hongyang7 Mar 1, 2023
5209c79
remove invalid nfa dump info
hongyang7 Mar 23, 2023
4344d2f
changelog: updates for 5.4.2 release
hongyang7 Apr 19, 2023
e843ac8
Merge pull request #169 from VectorCamp/feature/backport-hyperscan-20…
markos Sep 5, 2023
6834663
bump version, add Vectorscan Changelog
markos Sep 7, 2023
a344cd3
minor fix
markos Sep 7, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
gcc-10(and above): fix compile issue caused by stringop-overflow
  • Loading branch information
hongyang7 authored and markos committed Sep 5, 2023
commit 762f4050a0f6897b7b7f4337eb4354dd4fd9ed85
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -504,9 +504,9 @@ CHECK_CXX_COMPILER_FLAG("-Wunused-local-typedefs" CXX_UNUSED_LOCAL_TYPEDEFS)
CHECK_CXX_COMPILER_FLAG("-Wunused-variable" CXX_WUNUSED_VARIABLE)

# gcc 10 complains about this
CHECK_C_COMPILER_FLAG("-Wstringop-overflow" CC_STRINGOP_OVERFLOW)
if(CC_STRINGOP_OVERFLOW)
if (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL 10)
set(EXTRA_C_FLAGS "${EXTRA_C_FLAGS} -Wno-stringop-overflow")
set(EXTRA_CXX_FLAGS "${EXTRA_CXX_FLAGS} -Wno-stringop-overflow")
endif()

include_directories(SYSTEM ${Boost_INCLUDE_DIRS})
Expand Down