radare2/INSTALL
pancake adcefe78fe * Added 'mad' compiler support to crosscompile to maemo6 with QtCreator
- ./configure --with-compiler=mad --with-ostype=gnulinux
* Fix various warnings reported by maemo toolchain
2011-06-14 01:44:28 +02:00

39 lines
519 B
Plaintext

INSTALL
=======
To build and install radare2 and libr:
$ ./configure --prefix=/usr
Then build:
$ make -s
And install
$ sup make install
If you regret about it, just 'make deinstall' :)
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