radare2/libr
pancake 1732541915 * Fix OS identification in ELF on r_bin
* Add missing OSABI definitions
* Fix r_str_case()
* Remove already defined or useless commented config code from r1
2011-09-08 15:10:46 +02:00
..
anal * Add dummy darwin-x86-64 syscall information 2011-09-04 20:25:32 +02:00
asm * Build syscall/d at compile time 2011-09-06 00:38:56 +02:00
bin * Fix OS identification in ELF on r_bin 2011-09-08 15:10:46 +02:00
bp * Set library version number for plugins 2011-07-19 00:12:36 +02:00
cmd * Fix help for 'a' and ':' commands 2011-09-03 02:27:27 +02:00
config * Do not calculate reflines if asm.lines=false 2011-08-27 20:25:37 +02:00
cons * Fix segfault in cons/grep.c with scr.html=true 2011-09-02 02:03:38 +02:00
core * Fix OS identification in ELF on r_bin 2011-09-08 15:10:46 +02:00
crypto * Set library version number for plugins 2011-07-19 00:12:36 +02:00
db * Build syscall/d at compile time 2011-09-06 00:38:56 +02:00
debug * Fix build 2011-09-04 11:49:32 +02:00
diff * Initial implementation of the r_anal_aop_execute api 2011-02-03 00:20:39 +01:00
egg * Fix build 2011-09-04 11:49:32 +02:00
flags * Add 'rwx' permissions information in MACH0 sections 2011-07-19 18:03:31 +02:00
fs * Use hg manifest in make dist 2011-08-27 03:31:55 +02:00
hash * exit 1 if egg assemble or compilation fails 2011-08-14 14:11:15 +02:00
include * Build syscall/d at compile time 2011-09-06 00:38:56 +02:00
io * Refactoring of the TODO tasks 2011-09-03 03:10:01 +02:00
lang * Fix some memory leaks 2011-08-28 00:01:03 +02:00
lib * Do not calculate reflines if asm.lines=false 2011-08-27 20:25:37 +02:00
line * Fix some memory leaks 2011-08-28 00:01:03 +02:00
parse * Fix build 2011-09-04 11:49:32 +02:00
print * Build syscall/d at compile time 2011-09-06 00:38:56 +02:00
reg * Fix build, reduce warnings and add some checks 2011-08-30 19:12:49 +02:00
search * Implement R_SEARCH_DELTAKEY 2011-07-26 09:34:10 +02:00
sign * Fix build 2011-09-04 11:49:32 +02:00
socket * Fix build for osx 10.7 (with openssl) 2011-07-26 16:27:21 +02:00
syscall * Build syscall/d at compile time 2011-09-06 00:38:56 +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 OS identification in ELF on r_bin 2011-09-08 15:10:46 +02: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 * Set library version number for plugins 2011-07-19 00:12:36 +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 * Say different error if -w is used in r2 and fails 2011-09-04 02:34:54 +02:00
README * Clean TODO files 2010-05-21 01:46:26 +02:00
rules.mk * Initial import of external dependency sdb in r_db 2011-09-03 05:09:31 +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