2017-12-19 08:08:50 +01:00
|
|
|
Index: tools/build/src/tools/gcc.jam
|
|
|
|
===================================================================
|
|
|
|
--- tools/build/src/tools/gcc.jam.orig
|
|
|
|
+++ tools/build/src/tools/gcc.jam
|
2020-08-17 19:45:34 +02:00
|
|
|
@@ -704,15 +704,15 @@ actions compile.c.pch
|
2017-12-19 08:08:50 +01:00
|
|
|
###
|
|
|
|
|
|
|
|
# Declare flags and action for compilation.
|
|
|
|
-toolset.flags gcc.compile OPTIONS <optimization>off : -O0 ;
|
|
|
|
-toolset.flags gcc.compile OPTIONS <optimization>speed : -O3 ;
|
|
|
|
-toolset.flags gcc.compile OPTIONS <optimization>space : -Os ;
|
|
|
|
+toolset.flags gcc.compile OPTIONS <optimization>off : ;
|
|
|
|
+toolset.flags gcc.compile OPTIONS <optimization>speed : ;
|
|
|
|
+toolset.flags gcc.compile OPTIONS <optimization>space : ;
|
2020-08-17 19:45:34 +02:00
|
|
|
|
|
|
|
-toolset.flags gcc.compile OPTIONS <inlining>off : -fno-inline ;
|
|
|
|
-toolset.flags gcc.compile OPTIONS <inlining>on : -Wno-inline ;
|
|
|
|
-toolset.flags gcc.compile OPTIONS <inlining>full : -finline-functions -Wno-inline ;
|
2017-12-19 08:08:50 +01:00
|
|
|
+toolset.flags gcc.compile OPTIONS <inlining>off : ;
|
|
|
|
+toolset.flags gcc.compile OPTIONS <inlining>on : ;
|
|
|
|
+toolset.flags gcc.compile OPTIONS <inlining>full : ;
|
|
|
|
|
Accepting request 702030 from home:adamm:boost_test
- Update to version 1.70.0
Breaking changes:
* beast - there were many API changes. For details, see upstream
release notes
New libraries:
* outcome: A set of tools for reporting and handling function
failures in contexts where directly using exception handling
is unsuitable
* histogram: Fast and extensible multi-dimensional histograms
Updated libraries:
* asio, beast, context, coroutine2, dynamic bitset, fiber,
filesystem, integer, log, math, mp11, multi-index containers,
multiprecision, polycollection, spirit, stacktrace, test,
typeindex, typetraits, variant and ublas.
For detailed changes see
https://www.boost.org/users/history/version_1_70_0.html
- 0001-beast-fix-moved-from-executor.patch: upstream patch to fix regresion
- boost-rpmoptflags-only.patch: refresh but don't disable all extra
warnings
- dynamic_linking.patch: refreshed
- baselibs.conf - updated to 1.70.0
OBS-URL: https://build.opensuse.org/request/show/702030
OBS-URL: https://build.opensuse.org/package/show/devel:libraries:c_c++/boost?expand=0&rev=231
2019-05-10 17:11:17 +02:00
|
|
|
-toolset.flags gcc.compile OPTIONS <warnings>off : -w ;
|
|
|
|
+toolset.flags gcc.compile OPTIONS <warnings>off : ;
|
|
|
|
toolset.flags gcc.compile OPTIONS <warnings>on : -Wall ;
|
|
|
|
toolset.flags gcc.compile OPTIONS <warnings>all : -Wall ;
|
|
|
|
toolset.flags gcc.compile OPTIONS <warnings>extra : -Wall -Wextra ;
|