mirror of
https://github.com/radareorg/radare2.git
synced 2025-02-07 14:19:06 +00:00
![pancake](/assets/img/avatar_default.png)
* Update compilation instructions for w32 in doc/windows * Identify new osx binaries as mach0, not java * io.va only works when there are configured sections
20 lines
556 B
Plaintext
20 lines
556 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 --with-compiler=i486-mingw32-gcc --with-ostype=windows --host=i486-unknown-windows
|
|
make
|
|
|
|
Ubuntu
|
|
------
|
|
sudo apt-get install mingw32
|
|
./configure --with-compiler=i586-mingw32msvc-gcc --with-ostype=windows --host=i586-unknown-windows
|
|
make
|