radare2/libr
pancake 81727c9c28 * Fix lea in x86.nz
* Some more fixes for r_egg
  - Use more tests cases
  - Warn when stackframe doesnt fits
* Make t.sh unit test tool nicer
  - Accept option flags to show asm, disasm, ..
* Add R2_PREFIX and R2_LIBDIR into r_util.vapi
2011-10-24 10:59:27 +02:00
..
anal * Add -t flag to radiff2 to select code diffing match threshold 2011-10-20 02:14:35 +02:00
asm * Fix lea in x86.nz 2011-10-24 10:59:27 +02:00
bin * Added linux-x86-32 support for elf-init/fini syms 2011-10-20 19:52:19 +02:00
bp * brainfuck debugger is finally usable 2011-10-09 04:15:32 +02:00
cmd * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
config * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
cons * Add r_debug_stop() and use it from bf plugin 2011-10-20 18:04:26 +02:00
core * Enhacements for rarun2 2011-10-24 04:35:42 +02:00
crypto * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
db * Fix some possible-use-of-uninitialized-variables 2011-10-20 16:36:00 +02:00
debug * Fix some linking issues in debug/p/gdb 2011-10-21 01:41:57 +02:00
diff * Fix build and a null pointer segfault in r_diff 2011-09-19 14:25:27 +02:00
egg * Fix lea in x86.nz 2011-10-24 10:59:27 +02:00
flags * Add 'rwx' permissions information in MACH0 sections 2011-07-19 18:03:31 +02:00
fs * Fix build of bindings 2011-10-21 20:07:28 +02:00
hash * Fix r2-bindings build 2011-10-05 12:40:16 +02:00
include * Fix lea in x86.nz 2011-10-24 10:59:27 +02:00
io * Some fixes for the non-pic build 2011-10-20 02:31:49 +02:00
lang * Fix r2-bindings build 2011-10-05 12:40:16 +02:00
lib * Fix some possible-use-of-uninitialized-variables 2011-10-20 16:36:00 +02:00
line * Fix some possible-use-of-uninitialized-variables 2011-10-20 16:36:00 +02:00
magic * Some fixes for the non-pic build 2011-10-20 02:31:49 +02:00
parse * Use null fot unsupported plugins 2011-10-08 23:39:06 +02:00
print * Implement RBinCreate.elf-arm 2011-09-12 01:47:28 +02:00
reg * Use null fot unsupported plugins 2011-10-08 23:39:06 +02:00
search * Fix some possible-use-of-uninitialized-variables 2011-10-20 16:36:00 +02:00
sign * Fix some possible-use-of-uninitialized-variables 2011-10-20 16:36:00 +02:00
socket * Fix offbyone in asm.brainbuck bug 2011-10-07 01:16:45 +02:00
syscall * Enhacements for rarun2 2011-10-24 04:35:42 +02:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * Fix farm 2011-09-26 02:10:25 +02:00
util * Fix some possible-use-of-uninitialized-variables 2011-10-20 16:36:00 +02:00
vm * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
config.h.head * Add support to ARM for the debugger 2010-02-03 14:34:00 +01:00
config.h.tail * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +01:00
config.mk.head * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +01:00
config.mk.tail * Add hack to fix r2-python-osx bindings (python is broken) 2011-10-20 01:58:26 +02:00
depgraph.pl * Export 'srwx' perms of sections in rabin2 -rS 2010-04-08 12:29:47 +02:00
libr.pc.acr * Merge r_meta inside r_anal 2010-08-20 00:36:22 +02:00
Makefile * Disassembler errors are not fatal now 2011-10-05 11:55:35 +02:00
README * Clean TODO files 2010-05-21 01:46:26 +02:00
rules.mk * Fix pkgconfig files for embedded r_magic 2011-10-19 00:56:56 +02:00
stripsyms.sh * Apply whats's patch fixing r_search for stripstr 2009-10-12 17:41:52 +02:00
symgraph.pl * Do not show color prompt in windows 2010-09-24 19:04:33 +02:00
waitfordeps.sh * Fix build in OSX 2011-06-20 23:53:38 +02:00

                                 ___ ___
  =========================     |  _\_  \
  libr - codename 'radare2'     |   /  _/
  =========================     |_|__\__\


LibR is the refactoring of the old radare1 core in a set of libraries
defining the APIs of radare2.

The library 'libr' is composed by different modules, each one implementing
working modules of radare, so then, we get a complete set of libraries for
analyzing code, disassembling bytes, dumping bytes, plugin handling, etc..

The 'R' is for refactoring, reversing, radare, ...

Each module has its own test directory (t/) which contains simple applications
using the upper directory code and linking against the direct dependencies.

Each mode can own a plugin directory (p/) that contains extensions for the
parent library module (libr/asm/p/asm_x86).

There's also the possibility to define a list of static plugins to be built
inside the parent module. This way you can avoid some flexibility to ease
portability and build single binaries with some embedded features.

The library can be used from 'pkg-config', this way you can easy build an
application or plugin that links against libr or just few elements of it.

This enables a fine-grained test level for checking all functionalities in
one shot and give us the opportunity to write radare2 as test programs.

  --pancake