Re: [lttng-dev] Function Tracing Fails

2018-08-16 Thread paramesh p
please give your suggestions on previous mail. Thanks, Paramesh On Tue, Aug 7, 2018 at 2:20 PM, paramesh p wrote: > Sorry for the delayed response, > > @Mathieu, > I have attached the build log. The Project I am working is Yocto > Project based build system. My App uses the shared object

Re: [lttng-dev] Function Tracing Fails

2018-08-07 Thread paramesh p
Sorry for the delayed response, @Mathieu, I have attached the build log. The Project I am working is Yocto Project based build system. My App uses the shared object "libhw.so". So, it built first. As I said before,below are the flag I added AM_CFLAGS += -g -O0 -finstrument-functions

Re: [lttng-dev] Function Tracing Fails

2018-07-30 Thread Geneviève Bastien
Hi Paramesh, One way to know if your app is really compiled with -finstrument-functions is doing $ objdump -d my_test_app | grep cyg You would typically see something like this: 1250 <__cyg_profile_func_enter@plt>:     1250:    ff 25 fa 2d 20 00        jmpq   *0x202dfa(%rip) 

Re: [lttng-dev] Function Tracing Fails

2018-07-30 Thread Mathieu Desnoyers
- On Jul 29, 2018, at 9:29 PM, paramesh p wrote: > Hi, > I am trying to use Function Tracing for my application running in 32-bit ARM > Platform. I have added below lines in my makefile for enabling Trace Data for > function tracing > AM_CFLAGS += -g -O0 -finstrument-functions >