From b801e4ecd84c512a29da1aa06c0cdebd290ce846 Mon Sep 17 00:00:00 2001 From: Hans Dembinski Date: Fri, 7 Jun 2019 12:17:32 +0200 Subject: [PATCH] reorder --- Jamfile | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) 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 ;