What is the difference between libc++ and libc++abi library in LLVM?

六月ゝ 毕业季﹏ 提交于 2019-12-03 05:41:37

The Application Binary Interface, or ABI for short, is intended to provide certain low level functions from which to build the C++ standard library. It is a supporting library that is a separate component from the actual standard library. Along with libcxxabi, you may also come across Pathscale's libcxxrt or GCC's libsupcxx.

On the other hand, libc++ is an implementation of the C++ standard library that can be built using either of the 3 mentioned ABIs.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!