aboutsummaryrefslogtreecommitdiffstats
path: root/make_windows_releases
blob: 51908165306e91155582fc407e8eff538aaf931d (plain) (blame)
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#!/bin/sh

if [ ! -d external-libs ]; then
   echo "Please extract qpdf-external-libs-bin.zip and try again"
   exit 2
fi

if echo $PATH | grep -q /mingw64; then
    wordsize=64
else
    wordsize=32
fi

if [ "$wordsize" = 64 ]; then
    if [ ! -f win.32 ]; then
        echo "Waiting for win.32 to appear"
        while [ ! -f win.32 ]; do
            sleep 5
        done
    fi
else
    rm -f win.32 win.64
    echo ''
    echo "You may now start $0 in a 64-bit window."
    echo ''
    sleep 5
fi

set -e
set -x
cwd=`pwd`
PATH=$cwd/libqpdf/build:$PATH

for i in msvc mingw; do
    rm -rf {install,qtest}-$i$wordsize
    ./config-$i
    make -j8
    make -k check || \
        { mkdir qtest-$i$wordsize; \
          tar cf - */build/qtest.log | (cd qtest-$i$wordsize; tar xf -) }
    make install
    make distclean
done

touch win.$wordsize

set +x

echo "Finished builds for $wordsize."

if [ "$wordsize" = 32 ]; then
  echo "If not done already, rerun this in a "`expr 96 - $wordsize`"-bit environment."
  echo ''
else
  echo 'Running "./make_windows_releases-finish".'
  echo ''
  ./make_windows_releases-finish
fi