radare2/libr
pancake e5799fb7a2 Fix build on linux-mipsel64
- debugger backend now sets dbg.swstep
 - define linux-mips64 register profile
 - fix 32/64 annoyance in debugger
 - fix register read under some situations
2012-07-05 16:02:12 +00:00
..
anal * Initial fix for regdiff colorizer 2012-06-14 02:18:15 +02:00
asm Fix build on linux-mipsel64 2012-07-05 16:02:12 +00:00
bin Fix string parsing in rabin2 -z and more random fixes 2012-07-02 00:38:02 +02:00
bp Fix build on linux-mipsel64 2012-07-05 16:02:12 +00:00
cmd * Honor ^C in macros (r_cmd depends on r_cons now) 2012-06-12 02:51:34 +02:00
config * Fix some bugs reported by clang-analyzer 2012-05-31 02:41:45 +02:00
cons Fix string parsing in rabin2 -z and more random fixes 2012-07-02 00:38:02 +02:00
core Fix build on linux-mipsel64 2012-07-05 16:02:12 +00:00
crypto * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
db Fix string parsing in rabin2 -z and more random fixes 2012-07-02 00:38:02 +02:00
debug Fix build on linux-mipsel64 2012-07-05 16:02:12 +00:00
diff * Fix some bugs reported by clang-analyzer 2012-05-31 02:41:45 +02:00
egg * Initial fix for regdiff colorizer 2012-06-14 02:18:15 +02:00
flags * Fix invalid init segfault reported by vext01 2012-06-14 17:41:07 +02:00
fs * Fix invalid init segfault reported by vext01 2012-06-14 17:41:07 +02:00
hash * Fix invalid init segfault reported by vext01 2012-06-14 17:41:07 +02:00
include Fix build on linux-mipsel64 2012-07-05 16:02:12 +00:00
io * QNX/arm port (this is bb10 and playbook devices) 2012-06-01 14:50:24 +02:00
lang * Fix invalid init segfault reported by vext01 2012-06-14 17:41:07 +02:00
lib * bin_load() is no longer mandatory in RCore 2012-06-06 02:17:02 +02:00
line * Added 'om' command to create, destroy and list IO maps 2012-02-07 01:51:56 +01:00
magic * apply rudi_s patch fixing multiple bugs 2012-02-12 23:45:04 +01:00
parse * Fix some bugs reported by clang-analyzer 2012-05-31 02:41:45 +02:00
print * Force static builds for android 2012-06-26 16:20:30 +02:00
reg Fix build on linux-mipsel64 2012-07-05 16:02:12 +00:00
search * Fix w32 build 2012-02-14 18:10:01 +01:00
sign * Apply patches from ac1d3. Thanks! 2012-03-09 01:03:19 +01:00
socket * implement osx-x86-32/64 native cross debugging 2012-06-07 03:41:21 +02:00
syscall * Fix sdbpath for long paths 2011-11-01 12:59:07 +01:00
sysproxy
th * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
util Fix string parsing in rabin2 -z and more random fixes 2012-07-02 00:38:02 +02:00
vm * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
config.h.head
config.h.tail
config.mk.head * Fix lot of regressions in command parsing 2012-02-27 02:02:44 +01:00
config.mk.tail * Fix race condition building libr/debug 2012-06-13 01:42:47 +02:00
depgraph.pl
libr.pc.acr
Makefile * Fix make install for sflib 2011-12-01 20:17:40 +01:00
README
rules.mk * Apply patches from ac1d3. Thanks! 2012-03-09 01:03:19 +01:00
stripsyms.sh
symgraph.pl
waitfordeps.sh

                                 ___ ___
  =========================     |  _\_  \
  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