blob: d9bc273f907cc90c1601a30a49d8418c5cc1e564 [file] [log] [blame]
#!/bin/sh
# We use this script to check whether or not the processor supports Decimal Floating Point (DFP).
LD_SHOW_AUXV=1 /bin/true | grep dfp > /dev/null 2>&1
if [ "$?" -ne "0" ]; then
exit 1
else
exit 0
fi