mirror of
https://github.com/radareorg/radare2.git
synced 2024-11-28 23:50:40 +00:00
e8af14966b
- Added a r2-like API on top of it - Make RSearch and RMagic use this new api, so * Only load default magicpath files when no file is passed to RMagic * Initial work on r_listrange optimization in RAnal - #define USE_NEW_FCN_STORE - Still work-in-progress * Implemented a RPoolFactory singleton api to accelerate allocations of little objects in the future * Fix sys/mingw32.sh for osx * Added sys/maemo.sh
22 lines
675 B
Bash
Executable File
22 lines
675 B
Bash
Executable File
#!/bin/sh
|
|
|
|
if [ -x /usr/bin/pacman ]; then
|
|
make clean
|
|
./configure --without-gmp --with-compiler=i486-mingw32-gcc --with-ostype=windows --host=i486-unknown-windows --without-ssl && \
|
|
make -j 4 && \
|
|
make w32dist
|
|
elif [ `uname` = Darwin ]; then
|
|
make clean
|
|
./configure --without-gmp --with-compiler=i386-mingw32-gcc --with-ostype=windows --host=i386-unknown-windows --without-ssl && \
|
|
make -j 4 && \
|
|
make w32dist
|
|
elif [ -x /usr/bin/apt-get ]; then
|
|
make clean
|
|
./configure --without-gmp --with-compiler=i586-mingw32msvc-gcc --with-ostype=windows --host=i586-unknown-windows && \
|
|
make -j 4 && \
|
|
make w32dist
|
|
else
|
|
echo "ubuntu/debian or archlinux required."
|
|
exit 1
|
|
fi
|