forked from radareorg/radare2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatic.sh
executable file
·131 lines (120 loc) · 2.61 KB
/
static.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
#!/bin/sh
[ -z "${STATIC_BINS}" ] && STATIC_BINS=0
case "$(uname)" in
Linux)
LDFLAGS="${LDFLAGS} -lpthread -ldl -lutil -lm"
if [ "$NOLTO" != 1 ]; then
CFLAGS="${CFLAGS} -flto"
LDFLAGS="${LDFLAGS} -flto"
fi
if [ -n "`gcc -v 2>&1 | grep gcc`" ]; then
export AR=gcc-ar
fi
;;
Darwin)
CFLAGS="${CFLAGS} -flto"
LDFLAGS="${LDFLAGS} -flto"
;;
DragonFly|OpenBSD)
LDFLAGS="${LDFLAGS} -lpthread -lkvm -lutil -lm"
;;
esac
MAKE=make
gmake --help >/dev/null 2>&1
[ $? = 0 ] && MAKE=gmake
# find root
cd "$(dirname "$PWD/$0")" ; cd ..
ccache --help > /dev/null 2>&1
if [ $? = 0 ]; then
[ -z "${CC}" ] && CC=gcc
CC="ccache ${CC}"
export CC
fi
if [ -n "$1" ]; then
PREFIX="$1"
else
PREFIX=/usr
fi
DOCFG=1
if [ 1 = "${DOCFG}" ]; then
# build
if [ -f config-user.mk ]; then
${MAKE} mrproper > /dev/null 2>&1
fi
export CFLAGS="${CFLAGS} -fPIC"
cp -f dist/plugins-cfg/plugins.static.nogpl.cfg plugins.cfg
./configure-plugins || exit 1
#./configure --prefix="$PREFIX" --without-gpl --with-libr --without-libuv --disable-loadlibs || exit 1
./configure --prefix="$PREFIX" --without-gpl --with-libr --without-libuv || exit 1
fi
${MAKE} -j 8 || exit 1
BINS="rarun2 rasm2 radare2 ragg2 rabin2 rax2 rahash2 rafind2 r2agent radiff2 r2r"
# shellcheck disable=SC2086
for a in ${BINS} ; do
(
cd binr/$a
${MAKE} clean
if [ "`uname`" = Darwin ]; then
${MAKE} -j4 || exit 1
else
if [ "${STATIC_BINS}" = 1 ]; then
CFLAGS=-static LDFLAGS=-static ${MAKE} -j4 || exit 1
else
${MAKE} -j4 || exit 1
fi
fi
)
done
rm -rf r2-static
mkdir r2-static || exit 1
${MAKE} install DESTDIR="${PWD}/r2-static" || exit 1
echo "Using PREFIX ${PREFIX}"
# 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
gcc -v > /dev/null 2>&1 && CC=gcc
fi
# static pkg-config linking test
echo "[*] Static building with pkg-config..."
PKG_CONFIG_FLAGS=`
PKG_CONFIG_PATH="${PWD}/r2-static/usr/lib/pkgconfig" \
pkg-config \
--define-variable="libdir=${PWD}/r2-static/usr/lib" \
--define-variable="prefix=${PWD}/r2-static/usr" \
--static --cflags --libs r_core
`
set -x
${CC} .test.c ${PKG_CONFIG_FLAGS} -o r2-pkgcfg-static
res=$?
set +x
if [ $res = 0 ]; then
echo SUCCESS
rm -f a.out
else
echo FAILURE
fi
echo "[*] Static building with libr.a..."
${CC} .test.c \
${CFLAGS} \
-I ${PWD}/r2-static/usr/include/libr \
-I ${PWD}/r2-static/usr/include/libr/sdb \
r2-static/usr/lib/libr.a ${LDFLAGS}
res=$?
du -hs r2-static/usr/bin/radare2
du -hs a.out
set +x
if [ $res = 0 ]; then
echo SUCCESS
rm -f a.out
else
echo FAILURE
fi
rm -f .test.c
exit $res