blob: f8cde73148f183ea725f5d1df325c14b492eb481 (
plain)
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
|
#!/bin/sh
LARGEFILE=0
QMKSPEC=$1
VERBOSE=$2
SRCDIR=$3
OUTDIR=$4
# debuggery
[ "$VERBOSE" = "yes" ] && echo "Testing Large File support... ($*)"
# build and run a test program
test -d $OUTDIR/config.tests/unix/largefile || mkdir -p $OUTDIR/config.tests/unix/largefile
$OUTDIR/bin/qmake -nocache -spec "$QMKSPEC" $SRCDIR/config.tests/unix/largefile/largefiletest.pro -o $OUTDIR/config.tests/unix/largefile/Makefile >/dev/null 2>&1
cd $OUTDIR/config.tests/unix/largefile
if [ "$VERBOSE" = "yes" ]; then
(make && ./largefiletest)
else
(make && ./largefiletest) >/dev/null 2>&1
fi
LARGEFILE=$?
# done
if [ "$LARGEFILE" -ne 0 ]; then
[ "$VERBOSE" = "yes" ] && echo "Large File support disabled."
exit 0
else
[ "$VERBOSE" = "yes" ] && echo "Large File support enabled."
exit 1
fi
|