xref: /aosp_15_r20/external/skia/toolchain/linux_trampolines/ar_trampoline_linux.sh (revision c8dee2aa9b3f27cf6c858bd81872bdeb2c07ed17)
1#!/bin/bash
2# Copyright 2021 Google LLC
3#
4# Use of this source code is governed by a BSD-style license that can be
5# found in the LICENSE file.
6
7if [[ "$@" == *SKIA_SKIP_LINKING* ]]; then
8  # The archive file is listed as the second argument to this script, and we must make sure
9  # it exists or Bazel will fail a validation step.
10  touch $2
11  exit 0
12fi
13
14external/clang_linux_amd64/bin/llvm-ar $@
15