PATCH: (kind of) to improve support for libc++ with libsupc++
Chandler Carruth
chandlerc at google.com
Wed Sep 25 11:43:56 PDT 2013
It appears that there is file in libc++ whose entire contents are provided
by libc++abi / libcxxrt / libsupc++:
src/typeinfo.cpp
--------
...
#if !(defined(_LIBCPPABI_VERSION) || defined(LIBCXXRT))
...
#endif
--------
So, only headers are included before the #if. So for users of libc++abi and
libcxxrt, this translation unit is empty.
For users of libsupc++, the symbols defined here produce link errors as
they are always provided by libsupc++.
Any objections to my deleting this file?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/cfe-commits/attachments/20130925/6a2a8409/attachment.html>
More information about the cfe-commits
mailing list