This repository has been archived by the owner on Jan 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove dependency on libunwind (#17094)
* Add original source of libunwind 1.3-stable Taken from: https://github.com/libunwind/libunwind/tree/v1.3-stable * Enable building of libunwind This change enables building libunwind and removes dependency on the libunwind package for all Unixes except OSX. In OSX the libunwind is part of the OS and also has support for compact unwind info that is OSX specific, so we keep using that one. * Disable warnings in code we don't execute
- Loading branch information
Showing
778 changed files
with
78,715 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
*.la | ||
*.a | ||
*.o | ||
*.lo | ||
*~ | ||
*.pc | ||
|
||
.libs/ | ||
.deps/ | ||
|
||
.dirstamp | ||
Makefile | ||
Makefile.in | ||
|
||
INSTALL | ||
aclocal.m4 | ||
autom4te.cache/ | ||
config.log | ||
config.status | ||
config/ | ||
configure | ||
libtool | ||
|
||
doc/common.tex | ||
|
||
src/[GL]cursor_i.h | ||
src/mk_[GL]cursor_i.s | ||
|
||
include/config.h | ||
include/config.h.in | ||
include/libunwind-common.h | ||
include/stamp-h1 | ||
include/libunwind.h | ||
include/tdep/libunwind_i.h | ||
|
||
tests/[GL]test-bt | ||
tests/[GL]test-concurrent | ||
tests/[GL]test-dyn1 | ||
tests/[GL]test-exc | ||
tests/[GL]test-init | ||
tests/[GL]test-resume-sig | ||
tests/[GL]test-resume-sig-rt | ||
tests/[GL]perf-simple | ||
tests/Ltest-nomalloc | ||
tests/Ltest-nocalloc | ||
tests/Lperf-simple | ||
tests/Lrs-race | ||
tests/Ltest-varargs | ||
tests/check-namespace.sh | ||
tests/crasher | ||
tests/forker | ||
tests/mapper | ||
tests/rs-race | ||
tests/test-async-sig | ||
tests/test-coredump-unwind | ||
tests/test-flush-cache | ||
tests/test-init-remote | ||
tests/test-mem | ||
tests/test-ptrace | ||
tests/test-setjmp | ||
tests/test-strerror | ||
tests/test-proc-info | ||
tests/test-ptrace-misc | ||
tests/test-reg-state | ||
tests/test-varargs | ||
tests/test-static-link | ||
tests/[GL]test-trace | ||
tests/[GL]perf-trace | ||
tests/Ltest-cxx-exceptions | ||
tests/Ltest-init-local-signal | ||
tests/Ltest-mem-validate | ||
tests/[GL]ia64-test-nat | ||
tests/[GL]ia64-test-rbs | ||
tests/[GL]ia64-test-readonly | ||
tests/[GL]ia64-test-stack | ||
tests/ia64-test-dyn1 | ||
tests/ia64-test-sig | ||
tests/*.log | ||
tests/*.trs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
sudo: required | ||
language: c | ||
compiler: gcc | ||
env: | ||
- TARGET=x86_64-linux-gnu | ||
- TARGET=x86-linux-gnu | ||
- TARGET=arm-linux-gnueabihf | ||
- TARGET=aarch64-linux-gnu | ||
- TARGET=mipsel-unknown-linux-gnu | ||
# Currently experiencing build failures here | ||
#- TARGET=powerpc64-linux-gnu | ||
script: | ||
- ./autogen.sh | ||
- ./configure --target=$TARGET --host=$HOST | ||
- make -j32 | ||
- sudo bash -c 'echo core.%p.%p > /proc/sys/kernel/core_pattern' | ||
- ulimit -c unlimited | ||
- if [ $TARGET == 'x86_64-linux-gnu' ]; then make check -j32; fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
David Mosberger <dmosberger@gmail.org> |
Oops, something went wrong.