[libcxx-commits] [PATCH] D98367: [libcxxabi] Use cxx-headers target to consume libcxx headers

Bjorn Pettersson via Phabricator via libcxx-commits libcxx-commits at lists.llvm.org
Wed Mar 24 04:05:51 PDT 2021


bjope added inline comments.


================
Comment at: libcxxabi/test/libcxxabi/test/config.py:61
+        cxx_headers = self.get_lit_conf('cxx_headers', None) or \
+            os.path.join(self.project_obj_root, 'include', 'c++', 'v1')
         if cxx_headers == '':
----------------
Looking at the same problem as @uabelho  asked about. It works better if changing this line to
`os.path.join(self.cxx_library_root, '..', '..', '..', 'include', 'c++', 'v1')`
but maybe that isn't getting the intended headers?


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D98367/new/

https://reviews.llvm.org/D98367



More information about the libcxx-commits mailing list