mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-24 22:00:18 +00:00
8579a5b41f
- Propagate @VERSION@ from ACR - All *2 apps are now supporting a -V flag to show the version * Fix .dr* command in r_core debugger - dr now supports [regtype] [bitsize] arguments - Check dr? for help * Added some 8, 16 bit registers to the dbg.ptrace backend - Just for testing :) * Check build of the whole source tree - test programs are now in ${prefix}/bin/libr-test * Fix lot of warnings and bugs * Simplify some code * Some rapification * Fix segfault in r_reg related to unallocated arenas - New function r_reg_type_by_name() resolves string->id * Fix help of rax2 |
||
---|---|---|
.. | ||
p | ||
lang.c | ||
Makefile | ||
README |
Language bindings ================= Bindings should be generated automatically from vala or C. The programs running in r_lang should need a better integration with the rest of libs. This is: We need an api in r_lang to export a C symbol into the language namespace. For example: r_lang_define(lang, "Core", "core", core); r_lang_define(lang, "Asm", "asm", asm) This way the module instances can be shared between the core C application and many r_lang supported language bindings (perk, python, ..) TODO ==== * r_lang_define is implemented in lang.c, but requires the collaboration of the plugins to properly setup the environment for the script execution. * Add support for STATIC_PLUGINS for r-Lang too