nice docs with b2 --help

This commit is contained in:
Hans Dembinski 2020-06-07 16:17:34 +02:00
parent 6591fa2aec
commit 8ecaf89c3a

11
Jamfile
View File

@ -5,6 +5,12 @@
# Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
# http://www.boost.org/LICENSE_1_0.txt)
# Special builds for Boost Histogram:
#
# Generate coverage data: b2 cxxstd=latest coverage=on test//all
# Test without exceptions and rtti: b2 cxxstd=latest exception-handling=off rtti=off test//minimal
# Test with sanitizers: b2 toolset=clang cxxstd=latest histogram_ubasan test
import common ;
project
@ -27,10 +33,5 @@ variant histogram_ubasan : debug :
<linkflags>"-fsanitize=address,leak,undefined"
;
## Special builds:
#
# Generate coverage data: `b2 cxxstd=latest coverage=on`
# Build without exceptions and rtti: `b2 exception-handling=off rtti=off`
build-project test ;
build-project examples ;