Skip to content

Commit

Permalink
fix(demangle): Suppresses c++ warnings on older GCCs (#886)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dav1dde authored Jan 9, 2025
1 parent c142946 commit 181d9b3
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Changelog

## Unreleased

- Fixed a compilation issue with older GCC compilers. ([#886](https://github.com/getsentry/symbolic/pull/886))


## 12.13.0

- Update libswift demangle to v6.0.3 ([#885](https://github.com/getsentry/symbolic/pull/885))
- Update libswift demangle to v6.0.3. ([#885](https://github.com/getsentry/symbolic/pull/885))

## 12.12.4

Expand Down
2 changes: 1 addition & 1 deletion symbolic-demangle/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ fn main() {
"vendor/swift/lib/Demangling/Remangler.cpp",
])
.flag_if_supported("-std=c++17")
.flag_if_supported("-mmacosx-version-min=11.0.0")
.flag_if_supported("-fpermissive")
.flag_if_supported("-Wno-changes-meaning")
.flag("-DLLVM_DISABLE_ABI_BREAKING_CHECKS_ENFORCING=1")
.flag("-DSWIFT_STDLIB_HAS_TYPE_PRINTING=1")
Expand Down

0 comments on commit 181d9b3

Please sign in to comment.