2018-12-11 14:54:31 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# Copyright 2018 Google Inc. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
args=""
|
|
|
|
src=""
|
|
|
|
|
|
|
|
while [ "$1" ]; do
|
|
|
|
arg=$1
|
|
|
|
|
|
|
|
args="$args $1"
|
|
|
|
shift
|
|
|
|
|
|
|
|
if [ "$arg" == "-c" ]; then
|
|
|
|
src=$1
|
|
|
|
|
|
|
|
args="$args $1"
|
|
|
|
shift
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2020-03-30 14:50:20 +00:00
|
|
|
if [ "$src" ] && [[ "$src" != *"third_party"* ]]; then
|
2018-12-12 14:40:40 +00:00
|
|
|
clang-tidy -quiet -header-filter='.*' -warnings-as-errors='*' $src -- $args
|
2018-12-11 14:54:31 +00:00
|
|
|
fi
|
|
|
|
exec clang++ $args
|
|
|
|
|