mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 23:50:40 +00:00
9313a158d6
- Documented in doc/windows * Use single linked list pointer in rbin->rcore - Thanks @earada :)
28 lines
759 B
Plaintext
28 lines
759 B
Plaintext
HOW TO BUILD FOR WINDOWS
|
|
========================
|
|
Actually, if you want to build r2 for windows, you can use native compiler with mingw32 or
|
|
cygwin, but there's also the possibility to crosscompile from a Linux box:
|
|
|
|
|
|
Crosscompilation
|
|
================
|
|
|
|
ArchLinux
|
|
---------
|
|
./configure --without-gmp --without-openssl --with-compiler=i486-mingw32-gcc --with-ostype=windows --host=i486-unknown-windows
|
|
make
|
|
make w32dist
|
|
|
|
Ubuntu
|
|
------
|
|
sudo apt-get install mingw32
|
|
./configure --without-gmp --without-openssl --with-compiler=i586-mingw32msvc-gcc --with-ostype=windows --host=i586-unknown-windows
|
|
make
|
|
make w32dist
|
|
|
|
|
|
Python bindings:
|
|
----------------
|
|
wget http://www.python.org/ftp/python/2.7/python-2.7.msi
|
|
msiexec /i python-2.7.msi
|