mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-19 15:32:31 +00:00
This adds support for parsing DWARF "range lists", which are identified by the DW_AT_ranges form. They contain code addresses for DIEs whose location is not contiguous.
15 lines
335 B
CMake
15 lines
335 B
CMake
set(SOURCES
|
|
DebugInfo.cpp
|
|
DebugSession.cpp
|
|
Dwarf/AbbreviationsMap.cpp
|
|
Dwarf/AddressRanges.cpp
|
|
Dwarf/CompilationUnit.cpp
|
|
Dwarf/DIE.cpp
|
|
Dwarf/DwarfInfo.cpp
|
|
Dwarf/Expression.cpp
|
|
Dwarf/LineProgram.cpp
|
|
StackFrameUtils.cpp
|
|
)
|
|
|
|
serenity_lib(LibDebug debug)
|
|
target_link_libraries(LibDebug LibC LibRegex)
|