2011-11-22 14:12:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-12-30 12:38:50 +00:00
|
|
|
[ -z "${STATIC_BINS}" ] && STATIC_BINS=0
|
|
|
|
|
2018-10-20 17:58:20 +00:00
|
|
|
case "$(uname)" in
|
|
|
|
Linux)
|
2018-03-11 22:35:40 +00:00
|
|
|
LDFLAGS="${LDFLAGS} -lpthread -ldl -lutil -lm"
|
2018-10-20 17:58:20 +00:00
|
|
|
;;
|
|
|
|
OpenBSD)
|
|
|
|
LDFLAGS="${LDFLAGS} -lpthread -lkvm -lutil -lm"
|
|
|
|
;;
|
|
|
|
esac
|
2011-11-22 14:12:29 +00:00
|
|
|
MAKE=make
|
|
|
|
gmake --help >/dev/null 2>&1
|
|
|
|
[ $? = 0 ] && MAKE=gmake
|
|
|
|
|
|
|
|
# find root
|
2015-06-17 02:39:19 +00:00
|
|
|
cd "$(dirname "$PWD/$0")" ; cd ..
|
2011-11-22 14:12:29 +00:00
|
|
|
|
|
|
|
ccache --help > /dev/null 2>&1
|
|
|
|
if [ $? = 0 ]; then
|
|
|
|
[ -z "${CC}" ] && CC=gcc
|
|
|
|
CC="ccache ${CC}"
|
|
|
|
export CC
|
|
|
|
fi
|
2015-01-24 02:30:07 +00:00
|
|
|
if [ -n "$1" ]; then
|
|
|
|
PREFIX="$1"
|
2018-02-19 12:17:21 +00:00
|
|
|
else
|
|
|
|
PREFIX=/usr
|
2015-01-24 02:30:07 +00:00
|
|
|
fi
|
2018-02-19 12:17:21 +00:00
|
|
|
DOCFG=1
|
|
|
|
if [ 1 = "${DOCFG}" ]; then
|
2015-01-24 20:18:26 +00:00
|
|
|
# build
|
|
|
|
if [ -f config-user.mk ]; then
|
|
|
|
${MAKE} mrproper > /dev/null 2>&1
|
|
|
|
fi
|
2018-03-11 22:35:40 +00:00
|
|
|
export CFLAGS="${CFLAGS} -fPIC"
|
2018-09-09 06:24:45 +00:00
|
|
|
#cp -f plugins.static.cfg plugins.cfg
|
|
|
|
cp -f plugins.static.nogpl.cfg plugins.cfg
|
2015-11-01 18:31:07 +00:00
|
|
|
./configure-plugins || exit 1
|
2018-09-09 06:24:45 +00:00
|
|
|
./configure --prefix="$PREFIX" --without-gpl --with-libr --without-libuv --disable-loadlibs || exit 1
|
2011-11-22 14:12:29 +00:00
|
|
|
fi
|
2015-11-01 09:26:38 +00:00
|
|
|
${MAKE} -j 8 || exit 1
|
2018-09-14 10:15:15 +00:00
|
|
|
BINS="rarun2 rasm2 radare2 ragg2 rabin2 rax2 rahash2 rafind2 r2agent radiff2"
|
2015-06-17 02:39:19 +00:00
|
|
|
# shellcheck disable=SC2086
|
2015-04-09 21:36:18 +00:00
|
|
|
for a in ${BINS} ; do
|
|
|
|
(
|
2015-07-22 23:19:10 +00:00
|
|
|
cd binr/$a
|
|
|
|
${MAKE} clean
|
2018-11-16 15:53:50 +00:00
|
|
|
if [ "`uname`" = Darwin ]; then
|
|
|
|
${MAKE} -j4 || exit 1
|
|
|
|
else
|
2018-12-30 12:38:50 +00:00
|
|
|
if [ "${STATIC_BINS}" = 1 ]; then
|
|
|
|
CFLAGS=-static LDFLAGS=-static ${MAKE} -j4 || exit 1
|
|
|
|
else
|
|
|
|
${MAKE} -j4 || exit 1
|
|
|
|
fi
|
2018-11-16 15:53:50 +00:00
|
|
|
fi
|
2015-04-09 21:36:18 +00:00
|
|
|
)
|
|
|
|
done
|
|
|
|
|
|
|
|
rm -rf r2-static
|
2015-11-01 18:31:07 +00:00
|
|
|
mkdir r2-static || exit 1
|
2018-02-19 12:17:21 +00:00
|
|
|
${MAKE} install DESTDIR="${PWD}/r2-static" || exit 1
|
|
|
|
|
2018-10-15 22:28:51 +00:00
|
|
|
echo "Using PREFIX ${PREFIX}"
|
|
|
|
|
2018-02-19 12:17:21 +00:00
|
|
|
# testing installation
|
|
|
|
cat > .test.c <<EOF
|
|
|
|
#include <r_core.h>
|
|
|
|
int main() {
|
|
|
|
RCore *core = r_core_new ();
|
|
|
|
r_core_free (core);
|
|
|
|
}
|
|
|
|
EOF
|
|
|
|
cat .test.c
|
|
|
|
if [ -z "${CC}" ]; then
|
|
|
|
CC=gcc
|
|
|
|
fi
|
|
|
|
${CC} .test.c \
|
2018-03-13 02:38:38 +00:00
|
|
|
${CFLAGS} \
|
2018-02-19 12:17:21 +00:00
|
|
|
-I r2-static/usr/include/libr \
|
2018-03-03 21:28:21 +00:00
|
|
|
r2-static/usr/lib/libr.a ${LDFLAGS}
|
2018-02-19 12:17:21 +00:00
|
|
|
res=$?
|
2018-03-02 00:06:50 +00:00
|
|
|
if [ $res = 0 ]; then
|
2018-02-19 12:17:21 +00:00
|
|
|
echo SUCCESS
|
2018-10-02 21:58:16 +00:00
|
|
|
rm a.out
|
2018-02-19 12:17:21 +00:00
|
|
|
else
|
|
|
|
echo FAILURE
|
|
|
|
fi
|
|
|
|
|
2018-10-02 21:58:16 +00:00
|
|
|
rm .test.c
|
2018-02-19 12:17:21 +00:00
|
|
|
exit $res
|