msi: Make TransformView_Create static.
[wine.git] / tools / gitlab / build-mac
blob5c37aa6bcc93d1597a9cf624da0e7351b32bc4a0
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 -C --enable-win64 --with-mingw BISON=/usr/local/opt/bison/bin/bison
14 make -s -j8
15 cd ..
17 git reset --hard
18 sleep 2