blob: 014c33c8abcfd2edbacf4dfd7021a76b434f263d (
plain)
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
|
#!/bin/bash
set -e
set -x
HOSTT="${1}"
if [ "x${HOSTT}" = "x" -o "x${HOSTT}" = "xhost" ]; then
HOSTARG=""
else
HOSTARG="--host=${HOSTT}"
fi
SRCDIR="$(dirname $0)"
WDIR="wxWidgets"
cd ${SRCDIR}
git submodule init
git submodule update
cd ${WDIR}
git checkout .
cd ..
mkdir -p "${WDIR}-${HOSTT:-host}"
cd "${WDIR}-${HOSTT:-host}"
# Verify: Do we need '-Wl,-gc-sections' since we are creating static lib archives?
CXXFLAGS="-ffunction-sections -fdata-sections -Os -Wno-deprecated-declarations -Wno-misleading-indentation -Wno-undef -Wno-parentheses"
../${WDIR}/configure --without-expat --disable-compat28 --disable-compat30 \
--disable-richtooltip --disable-richmsgdlg --disable-richtext \
--without-libpng --without-libjpeg --without-regex \
--disable-ole --disable-mediactrl --disable-dataobj --disable-dataviewctrl \
--disable-treebook --disable-treelist --disable-stc \
--disable-webkit --disable-webview --disable-webviewwebkit --disable-webviewie \
--disable-svg --without-libtiff --without-zlib --without-opengl \
--without-gtkprint --disable-printfposparam --disable-printarch --disable-ps-in-msw \
--enable-cxx11 \
--disable-mshtmlhelp --disable-html --disable-htmlhelp \
--disable-ribbon --disable-propgrid --disable-aui \
--disable-sockets --disable-dialupman --disable-fs_inet \
--disable-shared ${HOSTARG} \
--disable-sys-libs \
--disable-debug --disable-debug_flag \
--disable-autoidman --disable-wxdib \
--disable-uiactionsim --disable-accessibility \
--disable-dragimage --disable-metafiles --disable-joystick \
--disable-hotkey --disable-busyinfo --disable-spline \
--disable-toolbook \
CXXFLAGS="${CXXFLAGS}"
CPUCORES=$(cat /proc/cpuinfo | grep -E '^processor' | wc -l)
make -j${BUILDJOBS:-${CPUCORES}} BUILD=release
# fix static lib path for cross compile targets
for lib in lib/*-${HOSTT:-host}.a; do
NEWNAME="$(echo -n "${lib}" | sed -n "s/-${HOSTT}\.a$//gp").a"
ln -sr "${lib}" "${NEWNAME}" 2>/dev/null || true
done
|