blob: 27d0c41ee77e8109620226bdb763be25c191b6bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#!/bin/sh
# How to configure & build a static wolfssl-3.6.8 library
# suitable for static build of ssl_helper.
export CC="x86_64-gcc"
export CFLAGS="\
-Os \
-static \
-fomit-frame-pointer \
-falign-functions=1 -falign-labels=1 -falign-loops=1 -falign-jumps=1 \
-ffunction-sections -fdata-sections \
"
./configure \
--enable-static \
--enable-singlethreaded \
--disable-shared \
|| exit $?
make
exit $?
|