Skip to content

Commit a19fdc0

Browse files
committed
commit
0 parents  commit a19fdc0

File tree

4 files changed

+490
-0
lines changed

4 files changed

+490
-0
lines changed

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
debug/
4+
target/
5+
6+
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
7+
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
8+
Cargo.lock
9+
10+
# These are backup files generated by rustfmt
11+
**/*.rs.bk
12+
13+
.vscode/

Cargo.toml

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
[package]
2+
name = "addr2line_breakpad"
3+
version = "0.1.0"
4+
authors = ["lds <[email protected]>"]
5+
edition = "2018"
6+
7+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8+
9+
[dependencies]
10+
clap = "2.33.0"

README.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Addr2line Breakpad
2+
3+
addr2line for breakpad symbol file
4+
5+
# Usage
6+
7+
```
8+
> ./breakpad/dump_syms libunity.so > libunity.so.sym
9+
> addr2line_breakpad libunity.so.sym 0000000000c1d21c
10+
0xc1d21c bool UnityDefaultAllocator<LowLevelAllocator>::AllocationPage<(RequestType)0>(void const*) const ??:?
11+
```
12+
13+
# Build
14+
15+
cargo rustc -- -C link-args="resources.res"

0 commit comments

Comments
 (0)