summaryrefslogtreecommitdiffstats
path: root/scripts/mingw-build.sh
blob: 6366dcbbb08a30d9047affcbaa635d7b66d91632 (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
#!/bin/bash

set -eo pipefail

build_libwebsockets() {
  svn co https://github.com/msys2/MINGW-packages/trunk/mingw-w64-libwebsockets
  sed -i 's/openssl/mbedtls/' mingw-w64-libwebsockets/PKGBUILD
  sed -i '/-DCMAKE_INSTALL_PREFIX=${MINGW_PREFIX}/a \    -DLWS_WITH_MBEDTLS=ON \\' mingw-w64-libwebsockets/PKGBUILD
  sed -i '/-DCMAKE_INSTALL_PREFIX=${MINGW_PREFIX}/a \    -DLWS_WITH_LIBUV=ON \\' mingw-w64-libwebsockets/PKGBUILD
  pushd mingw-w64-libwebsockets
    makepkg-mingw --cleanbuild --syncdeps --force --noconfirm
    pacman -U *.pkg.tar.zst --noconfirm
  popd
}

build_libwebsockets

# workaround for the lib name change
cp /mingw64/lib/libuv_a.a /mingw64/lib/libuv.a

rm -rf build && mkdir -p build && cd build
cmake -DCMAKE_BUILD_TYPE=RELEASE \
    -DCMAKE_FIND_LIBRARY_SUFFIXES=".a" \
    -DCMAKE_C_FLAGS="-Os -ffunction-sections -fdata-sections -fno-unwind-tables -fno-asynchronous-unwind-tables -flto" \
    -DCMAKE_EXE_LINKER_FLAGS="-static -no-pie -Wl,-s -Wl,-Bsymbolic -Wl,--gc-sections" \
    ..
cmake --build .