config.tests/unix/ptrsize.test
author Eckhart Koeppen <eckhart.koppen@nokia.com>
Wed, 28 Apr 2010 13:15:16 +0300
branchRCL_3
changeset 15 b25b6dc3ff8b
parent 0 1918ee327afb
permissions -rwxr-xr-x
2010-17 8b4fb6db9a24f58dafbd4734d9c4a87a72f9ad8f

#!/bin/sh

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)
else
  ($MAKE clean && $MAKE) >/dev/null 2>&1
fi
RETVAL=$?

if [ "$RETVAL" -ne 0 ]; then
    PTRSIZE=4
else
    PTRSIZE=8
fi


# done
[ "$VERBOSE" = "yes" ] && echo "Pointer size: $PTRSIZE"
exit $PTRSIZE