We're not getting any source code in gdb as such from our Xvnc with regards to functions outside the Xorg source. The relevant files are missing from the debug package, but I'm not sure that's all there is to it as gdb never complains about missing files like it does if I remove something else.
Not sure if this is a bit random or what's going on. The nightly builds have all the debuginfo for x86_64, but not i386.
It's just CMake being CMake. Apparently this: -DCMAKE_C_FLAGS="-Wall -O3 -g -march=pentium3 -mtune=generic" results in the variable "CMAKE_C_FLAGS:STRING=-Wall -O3 -g -march=pentium3 -mtune" being set to "generic". Additional quotes doesn't seem to have any effect. Adding a type solves the issue though: -DCMAKE_C_FLAGS:STRING="-Wall -O3 -g -march=pentium3 -mtune=generic"
Fixed in r30234. Tester needs to verify that we get the debug info in vncviewer and Xvnc, and that our CFLAGS are used in the builds. Pay extra attention to 32-bit.
We are linking fltk static and it seems like fltk debug info is not available, shouldn't it be possible to include those ? #0 0xf7ffcce0 in __kernel_vsyscall () #1 0x45c8edbd in ___newselect_nocancel () from /lib/libc.so.6 #2 0x080b2557 in fl_wait(double) () #3 0x080924ee in Fl::wait(double) () #4 0x080523d9 in TLClient::runApplication (this=0x82c9800) at tlclient_tlclient.cc:474 #5 0x0804f832 in main (argc=16, argv=0x0) at tlclient_main.cc:299
(In reply to comment #3) > Fixed in r30234. > > Tester needs to verify that we get the debug info in vncviewer and Xvnc, and > that our CFLAGS are used in the builds. Pay extra attention to 32-bit. Verified debugsymbols for vncviewer and Xvnc for both x86_64 and i686 archs using build 4726. Looks good except the note on comment #4.
(In reply to comment #4) > We are linking fltk static and it seems like fltk debug info is not available, > shouldn't it be possible to include those ? > bug 4414.
- Verify that debug packages for arm arch also is functional
(In reply to comment #7) > - Verify that debug packages for arm arch also is functional Verified debug package on armhf platform, works as expected. Closing.