Skip to content

Commit

Permalink
commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sandin committed Apr 15, 2021
0 parents commit a19fdc0
Show file tree
Hide file tree
Showing 4 changed files with 490 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# Generated by Cargo
# will have compiled files and executables
debug/
target/

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock

# These are backup files generated by rustfmt
**/*.rs.bk

.vscode/
10 changes: 10 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "addr2line_breakpad"
version = "0.1.0"
authors = ["lds <[email protected]>"]
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
clap = "2.33.0"
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Addr2line Breakpad

addr2line for breakpad symbol file

# Usage

```
> ./breakpad/dump_syms libunity.so > libunity.so.sym
> addr2line_breakpad libunity.so.sym 0000000000c1d21c
0xc1d21c bool UnityDefaultAllocator<LowLevelAllocator>::AllocationPage<(RequestType)0>(void const*) const ??:?
```

# Build

cargo rustc -- -C link-args="resources.res"
Loading

0 comments on commit a19fdc0

Please sign in to comment.