1#!/bin/bash
2if [ "$1" != "-cc1" ]; then
3    `dirname $0`/../clang -target x86_64-none-linux-android "$@"
4else
5    # target/triple already spelled out.
6    `dirname $0`/../clang "$@"
7fi
8