TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Facebook's iOS crash symbolization tool for Linux

11 pointsby jamesgpearceover 11 years ago

1 comment

js2over 11 years ago
You could also use dump_syms from the Google Breakpad project[1]. Run it on your dSYMs on OS X and it emits the symbols in a easily parseable text format[2] that you can then consume on any platform. It&#x27;s designed to work with the breakpad stackwalker binary for symbolizing a minidump generated by the breakpad client library but there are other consumers[3,4].<p>1. <a href="https://code.google.com/p/google-breakpad/" rel="nofollow">https:&#x2F;&#x2F;code.google.com&#x2F;p&#x2F;google-breakpad&#x2F;</a><p>2. <a href="https://code.google.com/p/google-breakpad/wiki/SymbolFiles" rel="nofollow">https:&#x2F;&#x2F;code.google.com&#x2F;p&#x2F;google-breakpad&#x2F;wiki&#x2F;SymbolFiles</a><p>3. <a href="https://llvm.org/svn/llvm-project/compiler-rt/trunk/lib/asan/scripts/asan_symbolize.py" rel="nofollow">https:&#x2F;&#x2F;llvm.org&#x2F;svn&#x2F;llvm-project&#x2F;compiler-rt&#x2F;trunk&#x2F;lib&#x2F;asan...</a><p>4. <a href="https://github.com/chromium/crsym" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;chromium&#x2F;crsym</a>