wine/tools/gitlab/build-linux-arm64
Alexandre Julliard d391114fcf gitlab: Add an ARM64 build.
Replacing the clang build since ARM64 is using clang already.
2025-07-01 21:38:31 +02:00

20 lines
350 B
Bash
Executable file

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