about summary refs log tree commit diff
path: root/src/libbacktrace/configure.ac
AgeCommit message (Collapse)AuthorLines
2018-05-30std: Delete bundled libbacktrace moduleAlex Crichton-418/+0
2017-11-08Disable `mmap` in `libbacktrace` on Apple platformsJohn Colanduoni-0/+6
Fixes #45731 libbacktrace uses mmap if available to map ranges of the files containing debug information. On macOS `mmap` will succeed even if the mapped range does not exist, and a SIGBUS (with an unusual EXC_BAD_ACCESS code 10) will occur when the program attempts to page in the memory. To combat this we force `libbacktrace` to be built with the simple `read` based fallback on Apple platforms.
2017-09-02Add libbacktrace support for Apple platformsJohn Colanduoni-0/+3
2016-01-14Update libbacktrace to 11b1a9c476b2df514d620d479407f2cf217cb373Vadim Petrochenkov-13/+11
Source: https://github.com/gcc-mirror/gcc
2016-01-03Undo whitespace tweaks pending libbacktrace mergeMichael McConville-3/+3
These should probably be submitted upstream. They're inevitably going to complicate merges, and because they're non-functional changes this just isn't worth our time.
2015-10-19Clean whitespaceCarlos Liam-2/+2
Remove leading newlines; replace lines containing only whitespace with empty lines; replace multiple trailing newlines with a single newline; remove trailing whitespace in lines
2015-10-06Clean newlinesCarlos Liam-1/+1
2015-09-04Update libbacktrace to r227145Diggory Blake-0/+17
2015-04-11Update libbacktrace to r220112 (from GCC SVN)Tim Cuthbertson-5/+8
2015-03-15Strip trailing whitespaceTamir Duberstein-3/+3
2014-03-11Bundle libbacktrace with the compilerAlex Crichton-0/+391
This will soon be used to print backtraces on failure