llvm_dep.go raw

   1  //===- llvm_dep.go - creates LLVM dependency ------------------------------===//
   2  //
   3  // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
   4  // See https://llvm.org/LICENSE.txt for license information.
   5  // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
   6  //
   7  //===----------------------------------------------------------------------===//
   8  //
   9  // This file ensures that the LLVM libraries are built before using the
  10  // bindings.
  11  //
  12  //===----------------------------------------------------------------------===//
  13  
  14  //go:build !byollvm
  15  
  16  package llvm
  17  
  18  var _ run_build_sh
  19