Home | History | Annotate | Download | only in arm64-v8a
      1 #!/bin/bash
      2 if [ "$1" != "-cc1" ]; then
      3     `dirname $0`/../clang++ -target aarch64-none-linux-android "$@"
      4 else
      5     # target/triple already spelled out.
      6     `dirname $0`/../clang++ "$@"
      7 fi
      8