- 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
12 lines
258 B
Bash
12 lines
258 B
Bash
#!/bin/sh
|
|
mad list >/dev/null 2>&1
|
|
if [ $? = 0 ]; then
|
|
make clean
|
|
echo './configure --without-ssl --prefix=/usr --with-little-endian' | mad sh
|
|
echo make | mad sh
|
|
cd maemo
|
|
make
|
|
else
|
|
echo "Cannot find 'mad'. Please install QtSDK or QtCreator"
|
|
exit 1
|
|
fi
|