File tree 4 files changed +490
-0
lines changed
4 files changed +490
-0
lines changed Original file line number Diff line number Diff line change
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 /
Original file line number Diff line number Diff line change
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"
Original file line number Diff line number Diff line change
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"
You can’t perform that action at this time.
0 commit comments