build(deps): update onig_sys to fix build on gcc 15 #652
+2
−2
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
What kind of change does this PR introduce?
Bug fix (build failure on Archlinux)
What is the current behavior?
The project fails to build on Arch Linux using GCC 15.
The failure is caused by an incompatibility in onig_sys, which does not compile correctly with GCC 15.
This issue is already tracked upstream in the rust-onig repository:
rust-onig/rust-onig#203
onig_sys is not a direct dependency of this project; it is a transitive dependency pulled in by ext_ai.
What is the new behavior?
The build succeeds on Arch Linux with GCC 15 after updating onig_sys to a newer version where the issue has been fixed upstream.
No application code was changed — only the affected indirect dependency was updated to restore compatibility.
Additional context