有没有办法从Linux上的dSYM中提取uuid?

问题描述 投票:0回答:1

有没有办法从 Linux 上的 dSYM 中提取 uuid?如果可能的话,特别是在 CentOS 上。

我尝试使用 dwarfdump、mediainfo、exiftool、llvm-dwarfdump,但无法提取它。

dwarfdump 命令结果无输出。 llvm-dwarfdump -u 不存在。 llvm-dwarfdump 的其他参数没有生成 uuid。 使用其余工具我无法生成 uuid。

还有其他工具吗?也许我错过了什么?

linux centos uuid dwarf dsym
1个回答
0
投票

是的:可以使用llvm-otool

$ llvm-otool -l foo.dSYM/Contents/Resources/DWARF/foo
Mach header
      magic cputype cpusubtype  caps    filetype ncmds sizeofcmds      flags
 0xfeedfacf 16777223          3  0x00          10     9       2664 0x00000000
Load command 0
     cmd LC_UUID
 cmdsize 24
    uuid 06226c4f-5cd4-4f01-a3a2-4162ebd4b8fd
...
© www.soinside.com 2019 - 2024. All rights reserved.