diff --git a/Jamfile b/Jamfile index 5b583bd0..2d816cb2 100644 --- a/Jamfile +++ b/Jamfile @@ -7,6 +7,16 @@ import common ; +project + : requirements + /boost//headers + $(BOOST_ROOT) + clang:"-pedantic -Wextra -Wsign-compare -Wstrict-aliasing -fstrict-aliasing" + gcc:"-pedantic -Wextra -Wsign-compare -Wstrict-aliasing -fstrict-aliasing" + : default-build + all + ; + path-constant THIS_PATH : . ; # only works with clang because of -fsanitize-blacklist @@ -22,14 +32,9 @@ variant histogram_coverage : debug : "--coverage" ; -project - : requirements - /boost//headers - $(BOOST_ROOT) - clang:"-pedantic -Wextra -Wsign-compare -Wstrict-aliasing -fstrict-aliasing" - gcc:"-pedantic -Wextra -Wsign-compare -Wstrict-aliasing -fstrict-aliasing" - : default-build - all +variant histogram_no_exceptions : debug : + latest + off ; build-project test ;