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

fix(demangle): Unbreak GitHub Action Windows builds #891

Merged
merged 2 commits into from
Jan 14, 2025
Merged
Changes from all commits
Commits
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
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,16 +2,21 @@

## Unreleased

- Fix new clippy lints ([#889](https://github.com/getsentry/symbolic/pull/889))
- Run `cargo update` ([#888](https://github.com/getsentry/symbolic/pull/888))
**Fixes**

- Fixed GHA-based Windows builds ([#891](https://github.com/getsentry/symbolic/pull/891)).

## 12.13.1

**Fixes**

- 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))
**Features**

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

## 12.12.4

@@ -34,7 +39,7 @@

## 12.12.1

**Features**:
**Features**

- feat(js): Sourcemap debug IDs can now be read from the `"debugId"` field in addition to
`"debug_id"` ([#870](https://github.com/getsentry/symbolic/pull/870)).
1 change: 1 addition & 0 deletions symbolic-demangle/build.rs
Original file line number Diff line number Diff line change
@@ -18,6 +18,7 @@ fn main() {
"vendor/swift/lib/Demangling/Remangler.cpp",
])
.flag_if_supported("-std=c++17")
.flag_if_supported("/std:c++17")
.flag_if_supported("-fpermissive")
.flag_if_supported("-Wno-changes-meaning")
.flag("-DLLVM_DISABLE_ABI_BREAKING_CHECKS_ENFORCING=1")