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

breakpad-sys: Update breakpad submodule with merged upstream #24

Merged
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions .github/workflows/rust-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,14 @@ on:
push:
branches:
- main
tags:
- "*"
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

name: CI
jobs:
lint:
Expand Down
2 changes: 1 addition & 1 deletion breakpad-sys/breakpad
Submodule breakpad updated 703 files
10 changes: 8 additions & 2 deletions breakpad-sys/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ fn main() {
);

if !build.get_compiler().is_like_msvc() {
build.flag("-std=c++11").flag("-fpermissive");
build.flag("-std=c++17").flag("-fpermissive");
}

// Our file that implements a small C API that we can easily bind to
Expand Down Expand Up @@ -83,7 +83,12 @@ fn main() {
add_sources(
&mut build,
"breakpad/src/client/linux/minidump_writer",
&["linux_dumper", "linux_ptrace_dumper", "minidump_writer"],
&[
"linux_dumper",
"linux_ptrace_dumper",
"minidump_writer",
"pe_file",
],
);

add_sources(
Expand Down Expand Up @@ -122,6 +127,7 @@ fn main() {
&mut build,
"breakpad/src/common/mac",
&[
"arch_utilities",
"file_id",
"macho_id",
"macho_utilities",
Expand Down
2 changes: 1 addition & 1 deletion breakpad-sys/lss/third_party/lss
Submodule lss updated from e1e7b0 to 9719c1