blob: 90c1925386f0e007ff779ef7f77c0347efed9bab (
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
STL=0
QMKSPEC=$1
VERBOSE=$2
SRCDIR=$3
OUTDIR=$4
# debuggery
[ "$VERBOSE" = "yes" ] && echo "Testing STL support..."
# build a test program
test -d $OUTDIR/config.tests/unix/stl || mkdir -p $OUTDIR/config.tests/unix/stl
$OUTDIR/bin/qmake -nocache -spec "$QMKSPEC" $SRCDIR/config.tests/unix/stl/stltest.pro -o $OUTDIR/config.tests/unix/stl/Makefile >/dev/null 2>&1
cd $OUTDIR/config.tests/unix/stl
if [ "$VERBOSE" = "yes" ]; then
(make && ./stltest)
else
(make && ./stltest) >/dev/null 2>&1
fi
STL=$?
# done
if [ "$STL" -ne 0 ]; then
[ "$VERBOSE" = "yes" ] && echo "STL support disabled."
exit 0
else
[ "$VERBOSE" = "yes" ] && echo "STL support enabled."
exit 1
fi
|