version.go raw
1 //go:build !purego
2
3 //===- version.go - LLVM version info -------------------------------------===//
4 //
5 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
6 // See https://llvm.org/LICENSE.txt for license information.
7 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
8 //
9 //===----------------------------------------------------------------------===//
10 //
11 // This file defines LLVM version information.
12 //
13 //===----------------------------------------------------------------------===//
14
15 package llvm
16
17 /*
18 #include "llvm/Config/llvm-config.h"
19 */
20 import "C"
21
22 const Version = C.LLVM_VERSION_STRING
23