radare2/libr
pancake bc18f03378 * Apply some patches reported by Edd in order to make OpenBSD build happy
- Not all patches applied, only the correct ones. needs some review
    in other BSD systems (NetBSD, FreeBSD, GNU/KFreeBSD, ...)
* Added R_BTW macro
2011-04-01 18:33:26 +02:00
..
anal Changes to SH4 anal plugin 2011-03-29 22:25:39 +02:00
asm * Show cursor in disasm bytes when scr.color=false 2011-03-30 18:41:42 +02:00
bin Initial SH4 support 2011-03-29 14:55:41 +02:00
bp * Some more work on r_core_sysenv* 2011-02-04 11:30:08 +01:00
cmd * Fix segfault in r_cons_memcat 2011-02-23 02:10:28 +01:00
config * Obey return values in callback in r_config_set 2011-03-29 14:29:33 +02:00
cons * Fix console width chops 2011-03-25 14:54:30 +01:00
core * Apply some patches reported by Edd in order to make OpenBSD build happy 2011-04-01 18:33:26 +02:00
crypto * More fixes on mingw32 build 2010-07-24 12:44:19 +02:00
db * Initial import of the hashtable implementation of WayLand 2011-03-17 19:05:39 +01:00
debug * Honor console width in visual mode 2011-03-24 22:47:06 +01:00
diff * Initial implementation of the r_anal_aop_execute api 2011-02-03 00:20:39 +01:00
flags * Initial import of RMixed datatype 2011-03-18 09:35:02 +01:00
fs * Added 'make purge' 2011-03-28 10:24:01 +02:00
hash Removed $Id line in sha2.h 2011-03-29 14:55:02 +02:00
include * Apply some patches reported by Edd in order to make OpenBSD build happy 2011-04-01 18:33:26 +02:00
io * Apply some patches reported by Edd in order to make OpenBSD build happy 2011-04-01 18:33:26 +02:00
lang * Initial implementation of the java name mangling 2011-02-27 20:30:41 +01:00
lib * Fix some overlapping strcpy's (thx @earada!) 2010-11-20 18:35:40 +01:00
line * Move RMeta inside RAnal 2011-03-02 00:02:50 +01:00
parse * Output error when 'wx' tries to write an invalid hexpair 2011-02-26 19:16:08 +01:00
print * Show cursor in disasm bytes when scr.color=false 2011-03-30 18:41:42 +02:00
reg * Fix loading the proper reg profile when in debugger 2011-03-24 11:03:23 +01:00
search * Make r_core_magic be verbose or not 2011-03-02 11:45:20 +01:00
sign * Fix build when compiling in a clean system (thx @esanfelix!) 2011-03-07 20:50:10 +01:00
socket * Fix build on OSX (thanks @capi_x) 2011-03-29 14:30:14 +02:00
syscall Initial SH4 support 2011-03-29 14:55:41 +02:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * Some cosmetic fixes in 'pd' 2010-12-13 00:49:33 +01:00
util * Fix console width chops 2011-03-25 14:54:30 +01:00
vm * Fix make -j for paralel builds 2010-10-29 03:10:10 +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 static and nonpic build with no gmp 2010-11-10 10:45:47 +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 stuff reported by Debian (thanks sre) 2011-03-10 09:19:30 +01:00
README * Clean TODO files 2010-05-21 01:46:26 +02:00
rules.mk * Fix build on W32 2011-03-10 11:36:16 +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 * Chop last '/' in r_fs_mount 2011-01-23 21:54:18 +01: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