forked from OSchip/llvm-project
[Bazel] Bump to v16.0.0, corresponding to llvmorg-16-init
This commit is contained in:
parent
f565444b48
commit
3e0b557002
|
@ -358,11 +358,11 @@ genrule(
|
|||
name = "basic_version_gen",
|
||||
outs = ["include/clang/Basic/Version.inc"],
|
||||
cmd = (
|
||||
"echo '#define CLANG_VERSION 15.0.0' >> $@\n" +
|
||||
"echo '#define CLANG_VERSION_MAJOR 15' >> $@\n" +
|
||||
"echo '#define CLANG_VERSION 16.0.0' >> $@\n" +
|
||||
"echo '#define CLANG_VERSION_MAJOR 16' >> $@\n" +
|
||||
"echo '#define CLANG_VERSION_MINOR 0' >> $@\n" +
|
||||
"echo '#define CLANG_VERSION_PATCHLEVEL 0' >> $@\n" +
|
||||
"echo '#define CLANG_VERSION_STRING \"15.0.0\"' >> $@\n"
|
||||
"echo '#define CLANG_VERSION_STRING \"16.0.0\"' >> $@\n"
|
||||
),
|
||||
)
|
||||
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
/* CLANG_HAVE_RLIMITS defined conditionally below */
|
||||
|
||||
/* The LLVM product name and version */
|
||||
#define BACKEND_PACKAGE_STRING "LLVM 15.0.0git"
|
||||
#define BACKEND_PACKAGE_STRING "LLVM 16.0.0git"
|
||||
|
||||
/* Linker version detected at compile time. */
|
||||
/* #undef HOST_LINK_VERSION */
|
||||
|
|
|
@ -13,7 +13,7 @@ package(
|
|||
genrule(
|
||||
name = "config_version_gen",
|
||||
outs = ["include/lld/Common/Version.inc"],
|
||||
cmd = "echo '#define LLD_VERSION_STRING \"15.0.0\"' > $@",
|
||||
cmd = "echo '#define LLD_VERSION_STRING \"16.0.0\"' > $@",
|
||||
)
|
||||
|
||||
genrule(
|
||||
|
|
|
@ -74,7 +74,7 @@
|
|||
#define LLVM_USE_PERF 0
|
||||
|
||||
/* Major version of the LLVM API */
|
||||
#define LLVM_VERSION_MAJOR 15
|
||||
#define LLVM_VERSION_MAJOR 16
|
||||
|
||||
/* Minor version of the LLVM API */
|
||||
#define LLVM_VERSION_MINOR 0
|
||||
|
@ -83,7 +83,7 @@
|
|||
#define LLVM_VERSION_PATCH 0
|
||||
|
||||
/* LLVM version string */
|
||||
#define LLVM_VERSION_STRING "15.0.0git"
|
||||
#define LLVM_VERSION_STRING "16.0.0git"
|
||||
|
||||
/* Whether LLVM records statistics for use with GetStatistics(),
|
||||
* PrintStatistics() or PrintStatisticsJSON()
|
||||
|
|
Loading…
Reference in New Issue