radare2/sys/sdk.sh
2017-02-02 13:25:17 +01:00

26 lines
573 B
Bash
Executable File

#!/bin/sh
SDKDIR=/tmp/r2-sdk
if [ -n "$1" ]; then
if [ -f "$1" ]; then
echo "Target directory exists. Cant build the SDK in there"
exit 1
fi
SDKDIR="$1"
fi
# Builds an SDK to build stuff for rbin
export CFLAGS="-Os"
make mrproper
cp -f plugins.bin.cfg plugins.cfg
#./configure-plugins
./configure --prefix="$PREFIX" --with-nonpic --without-pic || exit 1
#--disable-loadlibs || exit 1
make -j8 || exit 1
rm -rf "${SDKDIR}"
mkdir -p "${SDKDIR}"/lib
rm -f libr/libr.a
cp -rf libr/include "${SDKDIR}"
FILES=`find libr shlr -iname '*.a'`
cp -f ${FILES} "${SDKDIR}"/lib