blob: 3e707c54fa09256d7e7d8096871e2ce3bf3a2715 (
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
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
59
60
61
62
63
|
#!/bin/sh
QMKSPEC=$1
VERBOSE=$2
SRCDIR=$3
OUTDIR=$4
# debuggery
[ "$VERBOSE" = "yes" ] && echo "Determining floating point word-order... ($*)"
# build and run a test program
test -d "$OUTDIR/config.tests/unix/doubleformat" || mkdir -p "$OUTDIR/config.tests/unix/doubleformat"
"$OUTDIR/bin/qmake" -nocache -spec "$QMKSPEC" "$SRCDIR/config.tests/unix/doubleformat/doubleformattest.pro" -o "$OUTDIR/config.tests/unix/doubleformat/Makefile" >/dev/null 2>&1
cd "$OUTDIR/config.tests/unix/doubleformat"
DOUBLEFORMAT="UNKNOWN"
[ "$VERBOSE" = "yes" ] && make || make >/dev/null 2>&1
if [ -f ./doubleformattest ]; then
: # nop
else
[ "$VERBOSE" = "yes" ] && echo "Unknown floating point format!"
exit 2
fi
# LE: strings | grep 0123ABCD0123ABCD
# BE: strings | grep DCBA3210DCBA3210
#
# LE arm-swapped-dword-order: strings | grep ABCD0123ABCD0123
# BE arm-swapped-dword-order: strings | grep 3210DCBA3210DCBA (untested)
if strings ./doubleformattest | grep "0123ABCD0123ABCD" >/dev/null 2>&1; then
[ "$VERBOSE" = "yes" ] && echo " Normal little endian format"
DOUBLEFORMAT="LITTLE"
elif strings ./doubleformattest | grep "ABCD0123ABCD0123" >/dev/null 2>&1; then
[ "$VERBOSE" = "yes" ] && echo " Swapped little endian format"
DOUBLEFORMAT="LITTLESWAPPED"
elif strings ./doubleformattest | grep "DCBA3210DCBA3210" >/dev/null 2>&1; then
[ "$VERBOSE" = "yes" ] && echo " Normal big endian format"
DOUBLEFORMAT="BIG"
elif strings ./doubleformattest | grep "3210DCBA3210DCBA" >/dev/null 2>&1; then
[ "$VERBOSE" = "yes" ] && echo " Swapped big endian format"
DOUBLEFORMAT="BIGSWAPPED"
fi
# done
if [ "$DOUBLEFORMAT" = "LITTLE" ]; then
[ "$VERBOSE" = "yes" ] && echo "Using little endian."
exit 10
elif [ "$DOUBLEFORMAT" = "BIG" ]; then
[ "$VERBOSE" = "yes" ] && echo "Using big endian."
exit 11
elif [ "$DOUBLEFORMAT" = "LITTLESWAPPED" ]; then
[ "$VERBOSE" = "yes" ] && echo "Using swapped little endian."
exit 12
elif [ "$DOUBLEFORMAT" = "BIGSWAPPED" ]; then
[ "$VERBOSE" = "yes" ] && echo "Using swapped big endian."
exit 13
else
[ "$VERBOSE" = "yes" ] && echo "Unknown floating point format!"
exit 99
fi
|