Re: [Libunwind-devel] [PATCH 05/11] build: make libunwind-coredump build optional

2012-09-11 Thread Cody P Schafer
On 09/11/2012 10:15 AM, Mike Frysinger wrote: On Tue, Sep 11, 2012 at 8:43 AM, Cody P Schafer wrote: On Mon 10 Sep 2012 06:29:47 PM PDT, Mike Frysinger wrote: On Mon, Sep 10, 2012 at 8:21 PM, Cody P Schafer wrote: --- a/tests/Makefile.am +++ b/tests/Makefile.am EXTRA_DIST = run-ia64-tes

Re: [Libunwind-devel] [PATCH] siglongjmp documentation fix

2012-09-11 Thread Arun Sharma
On Tue, Sep 11, 2012 at 7:41 AM, Patrick Marlier wrote: > On 09/11/2012 02:14 AM, Tommi Rantala wrote: >> >> 2012/9/10 Patrick Marlier : >>> >>> Hi, >>> >>> I noticed a glitch in the documentation of libunwind-setjmp. >>> Attached the patch. >> >> >> Nice catch! > > > I don't have any account so i

Re: [Libunwind-devel] Problem building libunwind-1.0.1

2012-09-11 Thread Ariel Burton
On Tue 11 Sep 11:07, Arun Sharma wrote: > On Tue, Sep 11, 2012 at 9:37 AM, wrote: > > > Why is CONFIG_MSABI_SUPPORT a conditional? Why isn't on all > > the time? > > http://git.savannah.gnu.org/gitweb/?p=libunwind.git;a=commitdiff;h=e09f9701ffcd05b097565d15daa87ac1b2d84299 > > Support disable

Re: [Libunwind-devel] [PATCH 10/11] configure: introduce AX_ARG_ENABLE.

2012-09-11 Thread Arun Sharma
On Tue, Sep 11, 2012 at 10:30 AM, Mike Frysinger wrote: >>> AX_* is sort of a reserved namespace as the large autoconf-archive >>> project utilizes it everywhere. maybe pick a different prefix ? >> >> Sure, any suggestion? > > libunwind doesn't seem to have a standard atm (other than to not use

Re: [Libunwind-devel] [PATCH 10/11] configure: introduce AX_ARG_ENABLE.

2012-09-11 Thread Mike Frysinger
On Tue, Sep 11, 2012 at 9:00 AM, Cody P Schafer wrote: > On 09/10/2012 06:11 PM, Mike Frysinger wrote: >> On Mon, Sep 10, 2012 at 8:21 PM, Cody P Schafer wrote: >>> +# AX_ARG_ENABLE(argument, help-text, if-not-present) >> >> dnl rather than # >> >>> +AC_DEFUN([AX_ARG_ENABLE], >> >> AX_* is sort of

Re: [Libunwind-devel] Problem building libunwind-1.0.1

2012-09-11 Thread Arun Sharma
On Tue, Sep 11, 2012 at 9:37 AM, wrote: > Why is CONFIG_MSABI_SUPPORT a conditional? Why isn't on all > the time? http://git.savannah.gnu.org/gitweb/?p=libunwind.git;a=commitdiff;h=e09f9701ffcd05b097565d15daa87ac1b2d84299 Support disabled by default since it increases the cache footprint of t

[Libunwind-devel] Problem building libunwind-1.0.1

2012-09-11 Thread ariel . burton
Dear all, There's a problem building libunwinwd-1.0.1 when configured with --enable-msabi-support. The problem occurs when compilation reaches src/x86_64/Lglobal.c, because the symbols UNW_X86_64_XMM0, UNW_X86_64_XMM1 etc. are undefined. Lglobal.c reads: #define UNW_LOCAL_ONLY #include #

Re: [Libunwind-devel] [PATCH 10/11] configure: introduce AX_ARG_ENABLE.

2012-09-11 Thread Cody P Schafer
Whoops, missed the list. Resending. On 09/10/2012 06:11 PM, Mike Frysinger wrote: On Mon, Sep 10, 2012 at 8:21 PM, Cody P Schafer wrote: +# AX_ARG_ENABLE(argument, help-text, if-not-present) dnl rather than # +AC_DEFUN([AX_ARG_ENABLE], AX_* is sort of a reserved namespace as the large aut

Re: [Libunwind-devel] [PATCH 07/11] ppc64: remove compile warnings from wchar test.

2012-09-11 Thread Cody P Schafer
On 09/10/2012 11:09 PM, Tommi Rantala wrote: 2012/9/11 Mike Frysinger : On Mon, Sep 10, 2012 at 8:21 PM, Cody P Schafer wrote: - int i; + unsigned i; int ret; - printf("wcslen(wstring) = %d\n", wcslen(wstring)); + printf("wcslen(wstring) = %lu\n", (long unsigned) wcslen(wstring)); NA

Re: [Libunwind-devel] [PATCH 03/11] ppc32: add used attribute to dmy_ctxt

2012-09-11 Thread Cody P Schafer
On 09/10/2012 06:30 PM, Mike Frysinger wrote: On Mon, Sep 10, 2012 at 8:21 PM, Cody P Schafer wrote: -static ucontext_t dmy_ctxt; +static ucontext_t dmy_ctxt __attribute__((__used__)); shouldn't that be UNUSED (defined by include/libunwind_i.h) ? -mike Yes. Will fix. _

Re: [Libunwind-devel] [PATCH] siglongjmp documentation fix

2012-09-11 Thread Patrick Marlier
On 09/11/2012 02:14 AM, Tommi Rantala wrote: 2012/9/10 Patrick Marlier : Hi, I noticed a glitch in the documentation of libunwind-setjmp. Attached the patch. Nice catch! I don't have any account so if you could commit. Thanks! -- Patrick Marlier ___

Re: [Libunwind-devel] retrieve local variables and their values

2012-09-11 Thread Marion Guthmuller
Le 11/09/2012 10:34, Tommi Rantala a écrit : 2012/9/11 Marion Guthmuller: Hi, I'm currently using your library for the comparison of stacks at different execution times of my program and I'd like to retrieve local variables and compare their values. I didn't find information about that on your

Re: [Libunwind-devel] retrieve local variables and their values

2012-09-11 Thread Tommi Rantala
2012/9/11 Marion Guthmuller : > Hi, > > I'm currently using your library for the comparison of stacks at different > execution times of my program and I'd like to retrieve local variables and > compare their values. I didn't find information about that on your website, > is it possible with libunwi

[Libunwind-devel] retrieve local variables and their values

2012-09-11 Thread Marion Guthmuller
Hi, I'm currently using your library for the comparison of stacks at different execution times of my program and I'd like to retrieve local variables and compare their values. I didn't find information about that on your website, is it possible with libunwind ? Thanks. -- Marion G.