File tree Expand file tree Collapse file tree 8 files changed +11
-11
lines changed
utils/bazel/llvm-project-overlay Expand file tree Collapse file tree 8 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 3636
3737#ifdef __cplusplus
3838
39- # define _LIBCPP_VERSION 15003
39+ # define _LIBCPP_VERSION 15004
4040
4141# define _LIBCPP_CONCAT_IMPL (_X, _Y ) _X##_Y
4242# define _LIBCPP_CONCAT (_X, _Y ) _LIBCPP_CONCAT_IMPL(_X, _Y)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ if(NOT DEFINED LLVM_VERSION_MINOR)
2222 set (LLVM_VERSION_MINOR 0)
2323endif ()
2424if (NOT DEFINED LLVM_VERSION_PATCH)
25- set (LLVM_VERSION_PATCH 3 )
25+ set (LLVM_VERSION_PATCH 4 )
2626endif ()
2727if (NOT DEFINED LLVM_VERSION_SUFFIX)
2828 set (LLVM_VERSION_SUFFIX)
Original file line number Diff line number Diff line change 11llvm_version_major = 15
22llvm_version_minor = 0
3- llvm_version_patch = 3
3+ llvm_version_patch = 4
44llvm_version = " $llvm_version_major .$llvm_version_minor .$llvm_version_patch "
Original file line number Diff line number Diff line change 22
33__author__ = 'Daniel Dunbar'
44__email__ = 'daniel@minormatter.com'
5- __versioninfo__ = (15 , 0 , 3 )
5+ __versioninfo__ = (15 , 0 , 4 )
66__version__ = '.' .join (str (v ) for v in __versioninfo__ ) + 'dev'
77
88__all__ = []
Original file line number Diff line number Diff line change @@ -358,11 +358,11 @@ genrule(
358358 name = "basic_version_gen" ,
359359 outs = ["include/clang/Basic/Version.inc" ],
360360 cmd = (
361- "echo '#define CLANG_VERSION 15.0.3 ' >> $@\n " +
361+ "echo '#define CLANG_VERSION 15.0.4 ' >> $@\n " +
362362 "echo '#define CLANG_VERSION_MAJOR 15' >> $@\n " +
363363 "echo '#define CLANG_VERSION_MINOR 0' >> $@\n " +
364- "echo '#define CLANG_VERSION_PATCHLEVEL 3 ' >> $@\n " +
365- "echo '#define CLANG_VERSION_STRING \" 15.0.3 \" ' >> $@\n "
364+ "echo '#define CLANG_VERSION_PATCHLEVEL 4 ' >> $@\n " +
365+ "echo '#define CLANG_VERSION_STRING \" 15.0.4 \" ' >> $@\n "
366366 ),
367367)
368368
Original file line number Diff line number Diff line change 9393/* CLANG_HAVE_RLIMITS defined conditionally below */
9494
9595/* The LLVM product name and version */
96- #define BACKEND_PACKAGE_STRING "LLVM 15.0.3 "
96+ #define BACKEND_PACKAGE_STRING "LLVM 15.0.4 "
9797
9898/* Linker version detected at compile time. */
9999/* #undef HOST_LINK_VERSION */
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ package(
1313genrule (
1414 name = "config_version_gen" ,
1515 outs = ["include/lld/Common/Version.inc" ],
16- cmd = "echo '#define LLD_VERSION_STRING \" 15.0.3 \" ' > $@" ,
16+ cmd = "echo '#define LLD_VERSION_STRING \" 15.0.4 \" ' > $@" ,
1717)
1818
1919genrule (
Original file line number Diff line number Diff line change 8080#define LLVM_VERSION_MINOR 0
8181
8282/* Patch version of the LLVM API */
83- #define LLVM_VERSION_PATCH 3
83+ #define LLVM_VERSION_PATCH 4
8484
8585/* LLVM version string */
86- #define LLVM_VERSION_STRING "15.0.3 "
86+ #define LLVM_VERSION_STRING "15.0.4 "
8787
8888/* Whether LLVM records statistics for use with GetStatistics(),
8989 * PrintStatistics() or PrintStatisticsJSON()
You can’t perform that action at this time.
0 commit comments