add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

View File

@@ -1,16 +1,16 @@
# addr2line
> 将二进制文件地址转换文件名和行
> 更多信息:<https://manned.org/addr2line>.
> 将二进制文件地址转换文件名和行
> 更多信息:<https://manned.org/addr2line>
- 显示可执行文件的指令地址对应源代码的文件名和行
- 可执行文件的指令地址显示源代码的文件名和行
`addr2line --exe={{可执行文件路径}} {{地址}}`
`addr2line --exe={{path/to/executable}} {{address}}`
- 显示函数名、文件名和行
- 显示函数名、文件名和行
`addr2line --exe={{可执行文件路径}} --functions {{地址}}`
`addr2line --exe={{path/to/executable}} --functions {{address}}`
- C++ 代码函数名符号重组
- C++代码函数名进行解码
`addr2line --exe={{可执行文件地址}} --functions --demangle {{地址}}`
`addr2line --exe={{path/to/executable}} --functions --demangle {{address}}`