Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Qt Project
clang
llvm-project
Commits
154e88af
Commit
154e88af
authored
Nov 15, 2022
by
Tom Stellard
Browse files
Bump version to 15.0.5
parent
a3998966
Changes
8
Hide whitespace changes
Inline
Side-by-side
libcxx/include/__config
View file @
154e88af
...
...
@@ -36,7 +36,7 @@
#ifdef __cplusplus
# define _LIBCPP_VERSION 1500
4
# define _LIBCPP_VERSION 1500
5
# define _LIBCPP_CONCAT_IMPL(_X, _Y) _X##_Y
# define _LIBCPP_CONCAT(_X, _Y) _LIBCPP_CONCAT_IMPL(_X, _Y)
...
...
llvm/CMakeLists.txt
View file @
154e88af
...
...
@@ -22,7 +22,7 @@ if(NOT DEFINED LLVM_VERSION_MINOR)
set
(
LLVM_VERSION_MINOR 0
)
endif
()
if
(
NOT DEFINED LLVM_VERSION_PATCH
)
set
(
LLVM_VERSION_PATCH
4
)
set
(
LLVM_VERSION_PATCH
5
)
endif
()
if
(
NOT DEFINED LLVM_VERSION_SUFFIX
)
set
(
LLVM_VERSION_SUFFIX
)
...
...
llvm/utils/gn/secondary/llvm/version.gni
View file @
154e88af
llvm_version_major = 15
llvm_version_minor = 0
llvm_version_patch =
4
llvm_version_patch =
5
llvm_version = "$llvm_version_major.$llvm_version_minor.$llvm_version_patch"
llvm/utils/lit/lit/__init__.py
View file @
154e88af
...
...
@@ -2,7 +2,7 @@
__author__
=
'Daniel Dunbar'
__email__
=
'daniel@minormatter.com'
__versioninfo__
=
(
15
,
0
,
4
)
__versioninfo__
=
(
15
,
0
,
5
)
__version__
=
'.'
.
join
(
str
(
v
)
for
v
in
__versioninfo__
)
+
'dev'
__all__
=
[]
utils/bazel/llvm-project-overlay/clang/BUILD.bazel
View file @
154e88af
...
...
@@ -358,11 +358,11 @@ genrule(
name
=
"basic_version_gen"
,
outs
=
[
"include/clang/Basic/Version.inc"
],
cmd
=
(
"echo '#define CLANG_VERSION 15.0.
4
' >> $@
\n
"
+
"echo '#define CLANG_VERSION 15.0.
5
' >> $@
\n
"
+
"echo '#define CLANG_VERSION_MAJOR 15' >> $@
\n
"
+
"echo '#define CLANG_VERSION_MINOR 0' >> $@
\n
"
+
"echo '#define CLANG_VERSION_PATCHLEVEL
4
' >> $@
\n
"
+
"echo '#define CLANG_VERSION_STRING
\"
15.0.
4
\"
' >> $@
\n
"
"echo '#define CLANG_VERSION_PATCHLEVEL
5
' >> $@
\n
"
+
"echo '#define CLANG_VERSION_STRING
\"
15.0.
5
\"
' >> $@
\n
"
),
)
...
...
utils/bazel/llvm-project-overlay/clang/include/clang/Config/config.h
View file @
154e88af
...
...
@@ -93,7 +93,7 @@
/* CLANG_HAVE_RLIMITS defined conditionally below */
/* The LLVM product name and version */
#define BACKEND_PACKAGE_STRING "LLVM 15.0.
4
"
#define BACKEND_PACKAGE_STRING "LLVM 15.0.
5
"
/* Linker version detected at compile time. */
/* #undef HOST_LINK_VERSION */
...
...
utils/bazel/llvm-project-overlay/lld/BUILD.bazel
View file @
154e88af
...
...
@@ -13,7 +13,7 @@ package(
genrule
(
name
=
"config_version_gen"
,
outs
=
[
"include/lld/Common/Version.inc"
],
cmd
=
"echo '#define LLD_VERSION_STRING
\"
15.0.
4
\"
' > $@"
,
cmd
=
"echo '#define LLD_VERSION_STRING
\"
15.0.
5
\"
' > $@"
,
)
genrule
(
...
...
utils/bazel/llvm-project-overlay/llvm/include/llvm/Config/llvm-config.h
View file @
154e88af
...
...
@@ -80,10 +80,10 @@
#define LLVM_VERSION_MINOR 0
/* Patch version of the LLVM API */
#define LLVM_VERSION_PATCH
4
#define LLVM_VERSION_PATCH
5
/* LLVM version string */
#define LLVM_VERSION_STRING "15.0.
4
"
#define LLVM_VERSION_STRING "15.0.
5
"
/* Whether LLVM records statistics for use with GetStatistics(),
* PrintStatistics() or PrintStatisticsJSON()
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment