blob: 2a4e39f30c0ee5539955ad219f8f1309828e5119 (
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
|
#!/bin/sh
QMKSPEC=$1
VERBOSE=$2
SRCDIR=$3
OUTDIR=$4
# debuggery
[ "$VERBOSE" = "yes" ] && echo "Determining machine byte-order... ($*)"
# build and run a test program
test -d $OUTDIR/config.tests/unix/endian || mkdir -p $OUTDIR/config.tests/unix/endian
$OUTDIR/bin/tqmake -nocache -spec "$QMKSPEC" $SRCDIR/config.tests/unix/endian/endiantest.pro -o $OUTDIR/config.tests/unix/endian/Makefile >/dev/null 2>&1
cd $OUTDIR/config.tests/unix/endian
if [ "$VERBOSE" = "yes" ]; then
(make && ./endiantest)
else
(make && ./endiantest) >/dev/null 2>&1
fi
ENDIAN=$?
# done
if [ "$ENDIAN" -eq 0 ]; then
[ "$VERBOSE" = "yes" ] && echo "Using big endian."
exit 1
else
[ "$VERBOSE" = "yes" ] && echo "Using little endian."
exit 0
fi
|