[libc++] Only include_next C library headers when they exist
authorLouis Dionne <ldionne.2@gmail.com>
Tue, 15 Nov 2022 22:08:01 +0000 (17:08 -0500)
committerLouis Dionne <ldionne.2@gmail.com>
Thu, 17 Nov 2022 15:30:20 +0000 (10:30 -0500)
commit5d87f60f894764bd435086e311605884638d2384
tree0f09bf1423dbe98805efaa447e64692d07525e79
parentf81f0cb75a2808a67d2662f044ad07628fc9d900
[libc++] Only include_next C library headers when they exist

Some platforms don't provide all C library headers. In practice, libc++
only requires a few C library headers to exist, and only a few functions
on those headers. Missing functions that libc++ doesn't need for its own
implementation are handled properly by the using_if_exists attribute,
however a missing header is currently a hard error when we try to
do #include_next.

This patch should make libc++ more flexible on platforms that do not
provide C headers that libc++ doesn't actually require for its own
implementation. The only downside is that it may move some errors from
the #include_next point to later in the compilation if we actually try
to use something that isn't provided, which could be somewhat confusing.
However, these errors should be caught by folks trying to port libc++
over to a new platform (when running the libc++ test suite), not by end
users.

NOTE: This is a reapplicaton of 226409, which was reverted in 674729813
      because it broke the build. The issue has now been fixed with
      https://reviews.llvm.org/D138062.

Differential Revision: https://reviews.llvm.org/D136683
18 files changed:
libcxx/include/complex.h
libcxx/include/ctype.h
libcxx/include/errno.h
libcxx/include/fenv.h
libcxx/include/float.h
libcxx/include/inttypes.h
libcxx/include/limits.h
libcxx/include/locale.h
libcxx/include/math.h
libcxx/include/setjmp.h
libcxx/include/stdbool.h
libcxx/include/stddef.h
libcxx/include/stdint.h
libcxx/include/stdio.h
libcxx/include/stdlib.h
libcxx/include/string.h
libcxx/include/tgmath.h
libcxx/include/wchar.h