You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use libbacktrace to generate readable backtrace on Windows (CleverRaven#36615)
* Use libbacktrace to generate backtrace
* Move dbghelp symbol initialization to debug_write_backtrace
* Use libbacktrace on cross-compilation to Windows
* Download prebuilt libbacktrace before building
* Use square brackets instead of angle brackets
* Add license text of libbacktrace
Copy file name to clipboardExpand all lines: LICENSE.txt
+32Lines changed: 32 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -9,3 +9,35 @@ CATCH unit-test framework (tests/catch/catch.hpp) is licensed under the Boost So
9
9
PLF List and PLF Colony (src/list.h, src/colony.h) are licensed under the zLib license (https://www.zlib.net/zlib_license.html).
10
10
11
11
getpost (tools/json_tools/format/getpost.h) is licensed under the MIT license, see file for text of license.
12
+
13
+
libbacktrace is licensed under a BSD license (https://github.com/ianlancetaylor/libbacktrace/blob/master/LICENSE). The full license text is as follows:
14
+
15
+
# Copyright (C) 2012-2016 Free Software Foundation, Inc.
16
+
17
+
# Redistribution and use in source and binary forms, with or without
18
+
# modification, are permitted provided that the following conditions are
19
+
# met:
20
+
21
+
# (1) Redistributions of source code must retain the above copyright
22
+
# notice, this list of conditions and the following disclaimer.
23
+
24
+
# (2) Redistributions in binary form must reproduce the above copyright
25
+
# notice, this list of conditions and the following disclaimer in
26
+
# the documentation and/or other materials provided with the
27
+
# distribution.
28
+
29
+
# (3) The name of the author may not be used to
30
+
# endorse or promote products derived from this software without
31
+
# specific prior written permission.
32
+
33
+
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
34
+
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
35
+
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
36
+
# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
37
+
# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
38
+
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
39
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
40
+
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
41
+
# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
42
+
# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
0 commit comments