瀏覽代碼

Add link to 3rd party GDB pretty-printers

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@258270 91177308-0d34-0410-b5e6-96231b3b80d8
Eric Fiselier 9 年之前
父節點
當前提交
14a9008568
共有 1 個文件被更改,包括 13 次插入0 次删除
  1. 13 0
      docs/UsingLibcxx.rst

+ 13 - 0
docs/UsingLibcxx.rst

@@ -87,3 +87,16 @@ not just libstdc++ so they must be manually linked. For example:
 
   $ g++ -nostdinc++ -I<libcxx-install-prefix>/include/c++/v1 \
          test.cpp -nodefaultlibs -lc++ -lc++abi -lm -lc -lgcc_s -lgcc
+
+
+GDB Pretty printers for libc++
+------------------------------
+
+GDB does not support pretty-printing of libc++ symbols by default. Unfortunately
+libc++ does not provide pretty-printers itself. However there are 3rd
+party implementations available and although they are not officially
+supported by libc++ they may be useful to users.
+
+Known 3rd Party Implementations Include:
+
+* `Koutheir's libc++ pretty-printers <https://github.com/koutheir/libcxx-pretty-printers>`_.