iphlpapi: Link NotifyAddrChange and CancelIPChangeNotify to nsi implementation.
[wine.git] / tools / gitlab / build-linux
blobd77ca9cdb8ea6e1869a3c410145623ddb2ae51d5
1 #!/bin/bash
3 echo "Building $(git log -1)"
4 echo "---"
6 set -Eeuxo pipefail
8 ./tools/make_requests
9 ./tools/make_makefiles
10 autoreconf -f
12 cd build64
13 ../configure -q -C --enable-win64 --enable-werror --with-mingw
14 make -s -j$(nproc)
15 cd ..
17 cd build32
18 ../configure -q -C --enable-werror --with-mingw
19 make -s -j$(nproc)
20 cd ..
22 if ! test -s .git/rebase-merge/git-rebase-todo
23 then
24 make -s -j$(nproc) -C build32 install-lib install-test DESTDIR=$BASEDIR
25 make -s -j$(nproc) -C build64 install-lib install-test DESTDIR=$BASEDIR
28 git reset --hard