From 639bd0232b4d5926ab9b15a99e04efe27a0ffdb2 Mon Sep 17 00:00:00 2001 From: Peter Dimov Date: Sun, 22 Dec 2024 02:55:45 +0200 Subject: [PATCH] Add -ftemplate-depth=1024 for Clang (3.x needs it) --- test/Jamfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/test/Jamfile b/test/Jamfile index 61fdff6..b707723 100644 --- a/test/Jamfile +++ b/test/Jamfile @@ -144,4 +144,8 @@ compile variant_visit_cx.cpp : [ requires cxx14_constexpr ] ; compile variant_visit_cx_2.cpp : [ requires cxx14_constexpr ] ; compile variant_visit_r_cx.cpp : [ requires cxx14_constexpr ] ; -run variant_index_type.cpp : : : release msvc,32:no ; +run variant_index_type.cpp : : : + release + msvc,32:no + clang:-ftemplate-depth=1024 +;