[libunwind] r315814 - libunwind: document tested FreeBSD configs and sort OS list

Ed Maste via cfe-commits cfe-commits at lists.llvm.org
Sat Oct 14 10:04:04 PDT 2017


Author: emaste
Date: Sat Oct 14 10:04:04 2017
New Revision: 315814

URL: http://llvm.org/viewvc/llvm-project?rev=315814&view=rev
Log:
libunwind: document tested FreeBSD configs and sort OS list

libunwind is known to work on FreeBSD i386, amd64 (x86_64) and arm64.
It is the unwinder provided by the base system on all of those
architectures.

While here sort the OS list.

Differential Revision:	https://reviews.llvm.org/D38900

Modified:
    libunwind/trunk/docs/index.rst

Modified: libunwind/trunk/docs/index.rst
URL: http://llvm.org/viewvc/llvm-project/libunwind/trunk/docs/index.rst?rev=315814&r1=315813&r2=315814&view=diff
==============================================================================
--- libunwind/trunk/docs/index.rst (original)
+++ libunwind/trunk/docs/index.rst Sat Oct 14 10:04:04 2017
@@ -44,13 +44,14 @@ libunwind is known to work on the follow
 ============ ==================== ============ ========================
 OS           Arch                 Compilers    Unwind Info
 ============ ==================== ============ ========================
-Mac OS X     i386, x86_64         Clang, GCC   DWARF CFI
+Any          i386, x86_64, ARM    Clang        SjLj
+Bare Metal   ARM                  Clang, GCC   EHABI
+FreeBSD      i386, x86_64, ARM64  Clang        DWARF CFI
 iOS          ARM                  Clang        SjLj
-Linux        i386, x86_64, ARM64  Clang, GCC   DWARF CFI
 Linux        ARM                  Clang, GCC   EHABI
-Bare Metal   ARM                  Clang, GCC   EHABI
+Linux        i386, x86_64, ARM64  Clang, GCC   DWARF CFI
+Mac OS X     i386, x86_64         Clang, GCC   DWARF CFI
 NetBSD       x86_64               Clang, GCC   DWARF CFI
-Any          i386, x86_64, ARM    Clang        SjLj
 ============ ==================== ============ ========================
 
 The following minimum compiler versions are strongly recommended.




More information about the cfe-commits mailing list