wine/tools/gitlab/build-clang
2024-05-24 21:17:57 +02:00

17 lines
284 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 -j$(nproc)
cd ..