mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-31 18:43:28 +00:00
85534da1e9
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?)
51 lines
807 B
Plaintext
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
|