#!/bin/bash

if [[ `echo "$@" | grep -c -- -target` -eq 0 ]]
then
  clang-XX.orig --target=bpf "$@"
else
  clang-XX.orig "$@"
fi
