10 lines
196 B
Bash
10 lines
196 B
Bash
|
|
#!/bin/bash
|
||
|
|
# Copyright 2022 Google LLC
|
||
|
|
#
|
||
|
|
# Use of this source code is governed by a BSD-style license that can be
|
||
|
|
# found in the LICENSE file.
|
||
|
|
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
external/clang_mac/bin/clang $@
|