From aff7688620b9dd487acd3973df091dec87da42e4 Mon Sep 17 00:00:00 2001 From: ThePhD Date: Wed, 30 Mar 2016 02:35:13 -0400 Subject: [PATCH] mfw clang sucks --- bootstrap.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.py b/bootstrap.py index aaf66cbd..ddf60648 100755 --- a/bootstrap.py +++ b/bootstrap.py @@ -55,7 +55,7 @@ args = parser.parse_args() # general variables include = [ '.', './include' ] depends = [os.path.join('Catch', 'include')] -cxxflags = [ '-Wall', '-Wextra', '-pedantic', '-pedantic-errors', '-std=c++14' ] +cxxflags = [ '-Wall', '-Wextra', '-pedantic', '-pedantic-errors', '-std=c++14', '-ftemplate-depth=512' ] cxxflags.extend([p for p in re.split("( |\\\".*?\\\"|'.*?')", args.cxx_flags) if p.strip()]) ldflags = [] script_dir = os.path.dirname(os.path.realpath(sys.argv[0]))