radare2/libr
pancake 126223038c * Add Simon Ruderich patch adding pager support to r_cons (thanks!)
- Add new cfg.pager configuration variable
  - by default no pager is used (cfg.pager is empty).
2012-02-05 02:39:04 +01:00
..
anal * Initial support for the z80 CPU 2012-02-04 03:51:22 +01:00
asm * Fix segfault in m68k disassembler 2012-02-05 02:30:08 +01:00
bin * Fix segfault in xtr_fatmach0 on small files 2012-02-05 01:25:40 +01:00
bp * Fix build 2012-01-31 03:42:27 +01:00
cmd * Apply patch from @w_levin fixing lot of memory leaks - Thanks! 2011-12-16 16:33:06 +01:00
config * Fix build 2012-02-01 11:49:46 +01:00
cons * Add Simon Ruderich patch adding pager support to r_cons (thanks!) 2012-02-05 02:39:04 +01:00
core * Add Simon Ruderich patch adding pager support to r_cons (thanks!) 2012-02-05 02:39:04 +01:00
crypto * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
db * Apply @w_levin patch fixing memory leaks 2011-12-13 14:00:22 +01:00
debug * Fix build + initial work on z80 asm/dis 2012-02-03 10:57:45 +01:00
diff * Fix all dangerous bugs reported by llvm-analyzer 2011-11-14 22:46:23 +01:00
egg * Apply patch from @w_levin fixing lot of memory leaks - Thanks! 2011-12-16 16:33:06 +01:00
flags * Apply patch from @w_levin fixing lot of memory leaks - Thanks! 2011-12-16 16:33:06 +01:00
fs * Apply patch from @w_levin fixing lot of memory leaks - Thanks! 2011-12-16 16:33:06 +01:00
hash * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
include * Add Simon Ruderich patch adding pager support to r_cons (thanks!) 2012-02-05 02:39:04 +01:00
io * Add 16 segment addressing mode 2012-02-05 01:14:09 +01:00
lang * Apply patch from @w_levin fixing lot of memory leaks - Thanks! 2011-12-16 16:33:06 +01:00
lib ** Apply Simon Ruderich patch with few modifications 2012-02-04 23:25:10 +01:00
line * Add build timestamp in r2 -v 2012-02-05 02:22:31 +01:00
magic * Distribute magic files with w32dist 2011-11-29 18:31:26 +01:00
parse * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
print ** Apply Simon Ruderich patch with few modifications 2012-02-04 23:25:10 +01:00
reg * Fix build 2012-02-01 11:49:46 +01:00
search * Add asm.tabs for bearuty for free (enable by default?) 2012-01-26 03:18:45 +01:00
sign * Apply patch from @w_levin fixing lot of memory leaks - Thanks! 2011-12-16 16:33:06 +01:00
socket * Fix make install for hud (thanks l0gic) 2012-02-01 02:22:43 +01:00
syscall * Fix sdbpath for long paths 2011-11-01 12:59:07 +01:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
util * Add Simon Ruderich patch adding pager support to r_cons (thanks!) 2012-02-05 02:39:04 +01: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 * Fix iphone build 2011-11-27 14:02:39 +01: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 * Fix make install for sflib 2011-12-01 20:17:40 +01:00
README * Clean TODO files 2010-05-21 01:46:26 +02:00
rules.mk * Fix some warnings related to alloca(), %llx and O_BINARY for w32 2011-11-29 12:28:02 +01: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