diff options
Diffstat (limited to 'libcxx/utils')
-rw-r--r-- | libcxx/utils/libcxx/test/config.py | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/libcxx/utils/libcxx/test/config.py b/libcxx/utils/libcxx/test/config.py index e263e9db750..e694ea14793 100644 --- a/libcxx/utils/libcxx/test/config.py +++ b/libcxx/utils/libcxx/test/config.py @@ -580,6 +580,13 @@ class Configuration(object): support_path = os.path.join(self.libcxx_src_root, 'test/support') self.cxx.compile_flags += ['-I' + support_path] + # Add includes for the PSTL headers + pstl_root = self.get_lit_conf('pstl_root') + if pstl_root is not None: + self.cxx.compile_flags += ['-I' + os.path.join(pstl_root, 'include')] + self.cxx.compile_flags += ['-I' + os.path.join(pstl_root, 'test')] + self.config.available_features.add('parallel-algorithms') + # FIXME(EricWF): variant_size.pass.cpp requires a slightly larger # template depth with older Clang versions. self.cxx.addFlagIfSupported('-ftemplate-depth=270') |