From 00efa0a0fb2e0733d24cd25e119da567e5f2d76b Mon Sep 17 00:00:00 2001 From: Andrey Semashev Date: Sun, 14 Aug 2022 11:36:17 +0300 Subject: [PATCH] Removed compiler options that are not supported by clang-cl. --- test/Jamfile | 4 +--- test/container_fwd/Jamfile | 9 ++++++--- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/test/Jamfile b/test/Jamfile index c3f1aea..53c60ec 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -9,14 +9,12 @@ build-project container_fwd ; project detail/test : requirements + 300 clang:-Wno-unused clang:-Wno-tautological-compare - clang:-ftemplate-depth-300 - gcc:-ftemplate-depth-300 gcc:_STLP_DEBUG # Do not enable libstdc++ debug mode because of gcc 10.1 bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=95289 # gcc:_GLIBCXX_DEBUG - darwin:-ftemplate-depth-300 ; # import rules for testing conditional on config file variables diff --git a/test/container_fwd/Jamfile b/test/container_fwd/Jamfile index 1c0906e..e55612a 100644 --- a/test/container_fwd/Jamfile +++ b/test/container_fwd/Jamfile @@ -9,9 +9,12 @@ project detail/test/container_fwd : requirements all intel:on - gcc:"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion" - darwin:"-pedantic -Wstrict-aliasing -fstrict-aliasing -Wextra -Wsign-promo -Wunused-parameter -Wconversion" - clang:"-pedantic -Wextra -Wmismatched-tags" + gcc:pedantic + gcc:"-Wstrict-aliasing -fstrict-aliasing -Wsign-promo -Wunused-parameter -Wconversion" + darwin:pedantic + darwin:"-Wstrict-aliasing -fstrict-aliasing -Wsign-promo -Wunused-parameter -Wconversion" + clang:pedantic + clang:"-Wmismatched-tags" on ;