mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-25 06:09:50 +00:00
13 lines
299 B
Bash
Executable File
13 lines
299 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# find root
|
|
cd `dirname $PWD/$0` ; cd ..
|
|
|
|
export PATH=${PWD}/sys/_work/mingw64/bin:${PATH}
|
|
# TODO: add support for ccache
|
|
|
|
make clean
|
|
./configure --without-gmp --with-compiler=x86_64-w64-mingw32-gcc --with-ostype=windows --host=x86_64-unknown-windows --without-ssl
|
|
make -j 4
|
|
make w32dist
|