blob: 12e5f68ec61b3ed03e3132ed6b254030d167f1ce [file] [log] [blame]
sewardj0e342a02010-09-03 23:49:33 +00001#!/bin/sh
2
3# We use this script to check whether or not the processor supports VMX (aka "Altivec").
4
5LD_SHOW_AUXV=1 /bin/true | grep altivec > /dev/null 2>&1
6if [ "$?" -ne "0" ]; then
7 exit 1
8else
9 exit 0
10fi
11