File: build-linux

package info (click to toggle)
wine 8.0~repack-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 349,064 kB
  • sloc: ansic: 3,840,948; perl: 22,322; yacc: 18,640; javascript: 13,193; makefile: 11,359; objc: 6,780; lex: 5,004; python: 2,581; cpp: 1,690; xml: 1,332; sh: 868; java: 750; cs: 49
file content (28 lines) | stat: -rwxr-xr-x 543 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/bash

echo "Building $(git log -1)"
echo "---"

set -Eeuxo pipefail

./tools/make_requests
./tools/make_makefiles
autoreconf

cd build64
../configure -q -C --enable-win64 --enable-werror --with-mingw
make -s -j$(nproc)
cd ..

cd build32
../configure -q -C --enable-werror --with-mingw
make -s -j$(nproc)
cd ..

if ! test -s .git/rebase-merge/git-rebase-todo
then
    make -s -j$(nproc) -C build32 install-lib install-test DESTDIR=$BASEDIR
    make -s -j$(nproc) -C build64 install-lib install-test DESTDIR=$BASEDIR
fi

git reset --hard