radare2/libr
pancake bed664eb93 * Fix newline in dr= command
- Set 'ss' register as a segment type in OpenBSD/x86_64
2011-05-25 09:56:29 +02:00
..
anal * Slow but complete storage of project information 2011-06-04 13:29:15 +02:00
asm * Added 'mad' compiler support to crosscompile to maemo6 with QtCreator 2011-06-14 01:44:28 +02:00
bin * Fix invalid free in r_bin_elf 2011-06-09 12:38:11 +02:00
bp * Check for null in r_bp_list printf 2011-06-21 00:50:07 +02:00
cmd * Fix pkg-config-symstall 2011-05-20 19:49:50 +02:00
config * Fix some glitches in r_cons_column 2011-05-21 15:45:43 +02:00
cons * Handle environment variables in rarun2 2011-06-06 00:16:11 +02:00
core * Fix segfault in core/print_disasm 2011-06-23 01:01:27 +02:00
crypto * Drop another unused lib (r_crypto) 2011-04-04 18:09:45 +02:00
db * Initial import of the hashtable implementation of WayLand 2011-03-17 19:05:39 +01:00
debug * Fix newline in dr= command 2011-05-25 09:56:29 +02:00
diff * Initial implementation of the r_anal_aop_execute api 2011-02-03 00:20:39 +01:00
flags * Do not load strings if project is already loaded 2011-06-04 05:27:26 +02:00
fs * Fix build in OSX 2011-06-20 23:53:38 +02:00
hash * Fix collision with MD5_CTX 2011-04-15 09:22:34 +02:00
include * Fix build for extern "C" C++ 2011-06-14 04:49:10 +02:00
io * Fix r_io_cache 2011-06-22 00:19:02 +02:00
lang * Added search.count 2011-05-20 22:42:11 +02:00
lib * Fix many warning messages 2011-05-13 10:22:28 +02:00
line * Fix DEX parsing segfault 2011-05-24 15:25:52 +02:00
parse * Fix some warnings and build on linux 2011-05-20 21:04:16 +02:00
print * Added 'pw' and 'pq' commands to print 32bit and 64bit hex values 2011-06-09 01:20:02 +02:00
reg * r_asm_disassemble use _CONST_ut8* buffer now 2011-06-04 03:14:04 +02:00
search * Fix null pointer segfault when keyword creation fails 2011-06-09 11:56:32 +02:00
sign * Fix build when compiling in a clean system (thx @esanfelix!) 2011-03-07 20:50:10 +01:00
socket * Fix build for extern "C" C++ 2011-06-14 04:49:10 +02:00
syscall * Commited syscall entries for OpenBSD (thanks Edd Barrett!) 2011-04-28 18:31:06 +02:00
sysproxy
th * Some cosmetic fixes in 'pd' 2010-12-13 00:49:33 +01:00
util * Fix r_str_bits() 2011-06-21 00:33:29 +02:00
vm * Fix make -j for paralel builds 2010-10-29 03:10:10 +02:00
config.h.head
config.h.tail
config.mk.head
config.mk.tail * Use $(shell) instead of `` 2011-05-15 04:31:08 +02:00
depgraph.pl
libr.pc.acr
Makefile * Added initial untested support for native gdb debugger mode 2011-05-06 00:59:10 +02:00
README
rules.mk * Apply some fixes for kFreeBSD debugger and OS detection 2011-04-20 13:56:58 +02:00
stripsyms.sh
symgraph.pl
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