mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-01 00:51:19 +00:00
3bc0212ee6
- accepts --static and --shared to setup which plugins you want to build statically in the library or dynamically - normalize .mk and plugin file names to adopt a single standard - WARNING: huge commit * Added 'mk/sloc.mk' with 'sloc' target to count lines with sloccount everywhere (yeah!) --HG-- rename : libr/asm/p/x86bea.mk => libr/asm/p/x86_bea.mk rename : libr/asm/p/x86nasm.mk => libr/asm/p/x86_nasm.mk rename : libr/asm/p/x86olly.mk => libr/asm/p/x86_olly.mk rename : libr/config.h => libr/config.h.head rename : libr/config.mk => libr/config.mk.head rename : libr/debug/p/dbg_gdb.c => libr/debug/p/debug_gdb.c rename : libr/debug/p/dbg_ptrace.c => libr/debug/p/debug_ptrace.c rename : libr/debug/p/dbg_libgdbwrap/Makefile => libr/debug/p/libgdbwrap/Makefile rename : libr/debug/p/dbg_libgdbwrap/README => libr/debug/p/libgdbwrap/README rename : libr/debug/p/dbg_libgdbwrap/client.c => libr/debug/p/libgdbwrap/client.c rename : libr/debug/p/dbg_libgdbwrap/gdbwrapper.c => libr/debug/p/libgdbwrap/gdbwrapper.c rename : libr/debug/p/dbg_libgdbwrap/include/gdbwrapper-internals.h => libr/debug/p/libgdbwrap/include/gdbwrapper-internals.h rename : libr/debug/p/dbg_libgdbwrap/include/gdbwrapper-stddef.h => libr/debug/p/libgdbwrap/include/gdbwrapper-stddef.h rename : libr/debug/p/dbg_libgdbwrap/include/gdbwrapper.h => libr/debug/p/libgdbwrap/include/gdbwrapper.h rename : libr/debug/p/dbg_libgdbwrap/include/libaspect.h => libr/debug/p/libgdbwrap/include/libaspect.h rename : libr/debug/p/dbg_libgdbwrap/include/libe2dbg.h => libr/debug/p/libgdbwrap/include/libe2dbg.h rename : libr/debug/p/dbg_libgdbwrap/include/revm.h => libr/debug/p/libgdbwrap/include/revm.h rename : libr/debug/p/dbg_libgdbwrap/interface.c => libr/debug/p/libgdbwrap/interface.c rename : libr/io/p/dbg.mk => libr/io/p/debug.mk rename : libr/io/p/io_dbg.c => libr/io/p/io_debug.c
58 lines
2.0 KiB
Plaintext
58 lines
2.0 KiB
Plaintext
|
|
____ ___ ____ ___ ____ ___ ______ ____
|
|
| _ \/ \' \/ \ _ \/ _ \ \__ | / \
|
|
| < V . T . V < _/ .--'_/ | () |
|
|
|_|\__|_|__|___/|_|_|_|\__\___/ |_____(_)____/
|
|
|
|
----------------------------------------[ todo
|
|
* if we use objcopy --stripsymbols on a library..the stripped symbols are not
|
|
listed by nm or rabin..but objcopy is able to see them O_O
|
|
|
|
* rasm2 should be configurable at startup time to choose default arch (use environment?)
|
|
* store version information in libraries ?
|
|
* public delegate void RangeEachFunc(int i);
|
|
* public void each(RangeEachFunc each_func) { ... }
|
|
* r_io must need a reviewd undo API
|
|
|
|
<{include libr/TODO}>
|
|
|
|
* correct result (R_TRUFAE), but with warnings (implement r_errno and r_errstr in r_util?)
|
|
- Quantic errors ftw \o/
|
|
* r_cmd must provide a nesting char table indexing for commands
|
|
- this is pretty similar to r_db
|
|
- every module can register their own commands
|
|
- commands can be listed like in a tree
|
|
* 'Vc' cursor mode makes color toggle
|
|
|
|
* Finish and import the spp's getopt owns implementation in r_util (like in p9)
|
|
|
|
* Add maxrows option for r_print (fix visual problem)
|
|
* Drop #if conditionals to use #ifdef ones
|
|
- fits better with plan9 compiler
|
|
- use getopt() p9-like macros
|
|
|
|
* Add test for config.c with _set_cb
|
|
* Rename __UNIX__ as __POSIX__
|
|
* Strip non input symbols in plugins (speed up loading)
|
|
* Specify binmask in hexpairs
|
|
- wx 1234:ff0f
|
|
- /x 1234:ff0f
|
|
|
|
* radare2 -e dbg.engine=vm -d ls
|
|
- load the program using r_bin in virtual space
|
|
- initialize vm and set regs
|
|
- debug backend should use the vm
|
|
|
|
* Script plugins
|
|
- We should enable r_lib to implement plugins in any
|
|
scripting language, so we can for example prepare
|
|
a .c stub interface for python/perl/ruby/..
|
|
- Maybe having a preprocessor tool for this..
|
|
|
|
Vala issues
|
|
===========
|
|
** in a vapi file you can define a different constructor class Foo { bar Bar(); }..
|
|
definition of Bar will override the previous Bar() class definition
|
|
** .h is not included correctly for each vapi maybe its about order???
|
|
|