mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-05 20:50:06 +00:00
b20295c4ea
- Some minor hacks everywhere to glue - 'dr' command runs '|reg' io-ptrace command (reg dbg stuff needs more work) - '|reg' is a temporal command that prints x86-ptrace-linux registers * Added debug visual print mode using && :) - 's' key steps in debugger * Added m and ' keys in visual (mark and goto mark) like in vim or r1 :) - store/use seek addresses * Make use of the cmd.prompt and cmd.vprompt magic * Added debug handlers list with 'dh' - dh ptrace called at init - dp pid called at init too (hacky style) * Added debug->wait method for the debug handlers * Add 'fb' command to set base for flags * Fix flag redefinition (f foo && f foo @ 33) now works * Added s64 type (signed 64 bit integer) * Fixed && and '"' special chars in commnad parsing --HG-- rename : libr/debug/p/ptrace.c => libr/debug/p/dbg-ptrace.c
13 lines
201 B
Makefile
13 lines
201 B
Makefile
CFLAGS=-I../../include -Wall
|
|
BINDEPS=
|
|
|
|
all: dbg-ptrace.so
|
|
@true
|
|
|
|
dbg-ptrace.so: dbg-ptrace.o
|
|
${CC} ${CFLAGS} -fPIC -shared -o dbg-ptrace.so dbg-ptrace.c
|
|
#strip -s ptrace.so
|
|
|
|
clean:
|
|
-rm -f *.so *.o
|