summaryrefslogtreecommitdiff
path: root/bin/mips/analyzer++
blob: 61a59ca63a8ee3d30614d9ef9b80b3913f5546ec (plain)
1
2
3
4
5
6
7
#!/bin/bash
if [ "$1" != "-cc1" ]; then
    `dirname $0`/../clang++ -target mipsel-none-linux-android "$@"
else
    # target/triple already spelled out.
    `dirname $0`/../clang++ "$@"
fi