Enable stack trace on crash for x86_64 Linux (bug 346843). Patch by Sylvain Pasche <sylvain.pasche@gmail.com>, r+sr=me.

This commit is contained in:
bryner%brianryner.com 2006-08-06 18:48:14 +00:00
Родитель cf52f239bb
Коммит 393b5ff109
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -76,7 +76,8 @@
static char _progname[1024] = "huh?";
static unsigned int _gdb_sleep_duration = 300;
#if defined(LINUX) && defined(DEBUG) && (defined(__i386) || defined(PPC))
#if defined(LINUX) && defined(DEBUG) && \
(defined(__i386) || defined(__x86_64) || defined(PPC))
#define CRAWL_STACK_ON_SIGSEGV
#endif