libc++官方定义:

libc++ is an implementation of the C++ standard library, targeting C++11, C++14 and above.
All of the code in libc++ is dual licensed under the MIT license and the UIUC License (a BSD-like license).
libc ++是针对C ++ 11,C ++ 14及更高版本的C ++标准库的实现。
libc ++中的所有代码都是根据MIT许可证和UIUC许可证(类似于BSD的许可证)双重许可的。

libstdc++官方定义:

The C++ Runtime Library (libstdc++)
This page contains miscellaneous links to information about Libstdc++, the C++ runtime library.
C ++运行时库(libstdc ++)
该页面包含指向C ++运行时库Libstdc ++的信息的各种链接。

libc++/libstdc++,这两个库有关系吗?

答案:有。
联系:
两个都是C++标准库。
区别
libc++是针对clang编译器特别重写的C++标准库,
libc是Linux下原来的标准C库,也就是当初写hello world时包含的头文件#include 定义的地方。
ibstdc++与gcc是捆绑在一起的,也就是说安装gcc的时候会把libstdc++装上
libstdc++虽然提供了c++程序的标准库,但它并不与内核打交道。对于系统级别的事件,libstdc++首先是会与glibc交互,才能和内核通信。