1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 23:47:45 +00:00

bt: Add a little backtrace program that uses SymbolServer

Usage: bt <PID>

This program will print a symbolicated backtrace for the main thread of
the process with the given PID. It uses SymbolServer for the
symbolication.

There's a lot of room for improvement in this command, but it is pretty
neat already. :^)
This commit is contained in:
Andreas Kling 2021-02-04 20:00:19 +01:00
parent 5249aa2ba5
commit 3ff7b0ebfe
2 changed files with 172 additions and 0 deletions

View file

@ -17,6 +17,7 @@ endforeach()
target_link_libraries(aplay LibAudio)
target_link_libraries(avol LibAudio)
target_link_libraries(bt LibSymbolClient)
target_link_libraries(checksum LibCrypto)
target_link_libraries(chres LibGUI)
target_link_libraries(copy LibGUI)