blob: 0d0337d30378e9352d1214a1574a1818dc29608f (
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
|
#/bin/sh
LARGEFILE=0
QMKSPEC=$1
VERBOSE=$2
SRCDIR=$3
OUTDIR=$4
# debuggery
[ "$VERBOSE" = "yes" ] && echo "Testing size of pointers ... ($*)"
# build and run a test program
test -d $OUTDIR/config.tests/unix/ptrsize || mkdir -p $OUTDIR/config.tests/unix/ptrsize
$OUTDIR/bin/qmake -nocache -spec "$QMKSPEC" $SRCDIR/config.tests/unix/ptrsize/ptrsizetest.pro -o $OUTDIR/config.tests/unix/ptrsize/Makefile >/dev/null 2>&1
cd $OUTDIR/config.tests/unix/ptrsize
if [ "$VERBOSE" = "yes" ]; then
(make clean && make && ./ptrsizetest)
else
(make clean && make && ./ptrsizetest) >/dev/null 2>&1
fi
PTRSIZE=$?
# done
[ "$VERBOSE" = "yes" ] && echo "Pointersize: $PTRSIZE"
exit $PTRSIZE
|