1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 17:37:47 +00:00

LibSymbolication+SystemMonitor+bt: Move symbolication back in-process

Process-separated symbolication was cute, but ultimately the threat
model is kinda silly. We're already *running* the binary, but we're
afraid to parse its symbol table? :^)

This commit makes SystemMonitor and bt do symbolication in-process.
SymbolServer and the symbol user will be removed separately.
This commit is contained in:
Andreas Kling 2021-05-22 18:23:51 +02:00
parent d783076a30
commit 252cb54310
6 changed files with 60 additions and 75 deletions

View file

@ -2,10 +2,5 @@ set(SOURCES
Client.cpp
)
set(GENERATED_SOURCES
../../Services/SymbolServer/SymbolClientEndpoint.h
../../Services/SymbolServer/SymbolServerEndpoint.h
)
serenity_lib(LibSymbolication symbolclient)
target_link_libraries(LibSymbolication LibIPC)
target_link_libraries(LibSymbolication LibDebug)