diff options
author | tarui <tarui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-12-21 12:17:03 +0000 |
---|---|---|
committer | tarui <tarui@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2012-12-21 12:17:03 +0000 |
commit | 315bf4b6d726c7a26fe1ae75889056cba90cb472 (patch) | |
tree | b21b126bdbd1bb19d062bf64aae877522460584d | |
parent | 17ac7835415cab22649422704a17c7b7f1c43419 (diff) |
* vm_dump.c (rb_vm_bugreport): commentout addr2line call temporarily
in order to avoid segv. anyone can fix addr2line?
[Bug #7597] [ruby-dev:46786]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38533 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | vm_dump.c | 9 |
2 files changed, 11 insertions, 4 deletions
@@ -1,3 +1,9 @@ +Fri Dec 21 21:12:54 2012 Masaya Tarui <[email protected]> + + * vm_dump.c (rb_vm_bugreport): commentout addr2line call temporarily + in order to avoid segv. anyone can fix addr2line? + [Bug #7597] [ruby-dev:46786] + Fri Dec 21 20:38:28 2012 Koichi Sasada <[email protected]> * iseq.c (Init_ISeq): remove definition of the following methods: @@ -644,14 +644,15 @@ rb_vm_bugreport(void) char **syms = backtrace_symbols(trace, n); if (syms) { -#ifdef USE_ELF - rb_dump_backtrace_with_lines(n, trace, syms); -#else +/* commentout temporarily. we have to fix addr2line. see [Bug #7597] */ +/* #ifdef USE_ELF */ +/* rb_dump_backtrace_with_lines(n, trace, syms); */ +/* #else */ int i; for (i=0; i<n; i++) { fprintf(stderr, "%s\n", syms[i]); } -#endif +/* #endif */ free(syms); } #elif defined(_WIN32) |