wine/tools/gitlab/build-clang
Alexandre Julliard a912eb809b gitlab: Remove make -j options.
Use the runner MAKEFLAGS instead.
2024-10-02 22:37:59 +02:00

16 lines
273 B
Bash
Executable file

#!/bin/bash
echo "Building $(git log -1)"
echo "---"
set -Eeuxo pipefail
./tools/make_requests
./tools/make_specfiles
./tools/make_makefiles
autoreconf -f
cd build64
../configure -q -C --enable-werror --enable-archs=i386,x86_64,aarch64 --with-mingw=clang
make -s
cd ..