Skip to content

Commit ba4a3c0

Browse files
committed
Silence Apple clang warnings.
1 parent c1dfb66 commit ba4a3c0

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

doc/src/history.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
[[b2.history]]
22
= History
33

4+
== Version 4.10.1
5+
6+
* Silence warnings for using standard deprecated functions by Apple clang
7+
toolset in b2 build.
8+
-- _René Ferdinand Rivera Morell_
9+
410
== Version 4.10.0
511

612
This release contains many bug fixes but along the way also cleanup and

src/engine/build.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -389,8 +389,8 @@ case "${B2_TOOLSET}" in
389389

390390
clang|clang-*)
391391
CXX_VERSION_OPT=${CXX_VERSION_OPT:---version}
392-
B2_CXXFLAGS_RELEASE="-O3 -s"
393-
B2_CXXFLAGS_DEBUG="-O0 -fno-inline -g"
392+
B2_CXXFLAGS_RELEASE="-O3 -s -Wno-deprecated-declarations"
393+
B2_CXXFLAGS_DEBUG="-O0 -fno-inline -g -Wno-deprecated-declarations"
394394
;;
395395

396396
tru64cxx)

src/engine/patchlevel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ Distributed under the Boost Software License, Version 1.0.
1313

1414
#define VERSION_MAJOR 4
1515
#define VERSION_MINOR 10
16-
#define VERSION_PATCH 0
16+
#define VERSION_PATCH 1

0 commit comments

Comments
 (0)