Skip to content

Commit

Permalink
* vm_dump.c (rb_print_backtrace): our addr2line doesn't work on sparc.
Browse files Browse the repository at this point in the history
  http://rubyci.s3.amazonaws.com/unstable11s/ruby-trunk/log/20151027T043311Z.log.html.gz

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@52296 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
  • Loading branch information
nurse committed Oct 27, 2015
1 parent ec4ba1b commit 17e5dff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
Tue Oct 27 16:12:37 2015 NARUSE, Yui <naruse@ruby-lang.org>

* vm_dump.c (rb_print_backtrace): our addr2line doesn't work on sparc.
http://rubyci.s3.amazonaws.com/unstable11s/ruby-trunk/log/20151027T043311Z.log.html.gz

Tue Oct 27 12:00:33 2015 Nobuyoshi Nakada <nobu@ruby-lang.org>

* lib/logger.rb (Logger::Period#next_rotate_time): get rid of
Expand Down
2 changes: 1 addition & 1 deletion vm_dump.c
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ rb_print_backtrace(void)
#define MAX_NATIVE_TRACE 1024
static void *trace[MAX_NATIVE_TRACE];
int n = (int)backtrace(trace, MAX_NATIVE_TRACE);
#if defined(USE_ELF) && defined(HAVE_DLADDR)
#if defined(USE_ELF) && defined(HAVE_DLADDR) && !defined(__sparc)
rb_dump_backtrace_with_lines(n, trace);
#else
char **syms = backtrace_symbols(trace, n);
Expand Down

0 comments on commit 17e5dff

Please sign in to comment.