radare2/INSTALL
pancake 85534da1e9 x86.nz assembler: add jmp/call abs/rel (rip) memrefs
Add some more notes in INSTALL text
Initial design work on dalvik payload instructions
Open '-' virtual file as read-write (r2 -)
Fix r_core_yank_to signature
Remove io.va search warning (no more issues?)
2012-08-09 12:42:44 +02:00

51 lines
807 B
Plaintext

INSTALL
=======
To build and install radare2 and libr:
$ ./configure --prefix=/usr
Then build:
$ make -s
NOTE: You can override CC, CFLAGS, CPPFLAGS with environment.
Those variables are captured by make, not by configure.
And install
$ sudo make install
If you are developing: install it with symlinks to avoid installing
after every compilation.
$ sudo make symstall
Deinstall:
$ make deinstall
NOTE: Make purge will remove *all* installed versions of r2.
WINDOWS
=======
$ ./configure --with-compiler=i486-mingw32-gcc --with-ostype=windows
$ make
MAEMO
=====
$ ./configure --with-compiler=mad --with-ostype=gnulinux
$ make
$ make deb # TODO
CONFIGURATION
=============
Plugins can be compiled as static or dynamic:
$ $EDITOR 'libr/config.{mk,h}'
--pancake