mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
functrace traces the function calls a program makes. It's like strace, but for userspace. It works by using Debugging functionality to insert breakpoints at call&ret instructions.
9 lines
98 B
Makefile
Executable File
9 lines
98 B
Makefile
Executable File
OBJS = \
|
|
main.o
|
|
|
|
PROGRAM = Debugger
|
|
|
|
LIB_DEPS = Core X86 Debug
|
|
|
|
include ../../Makefile.common
|