lxdream.org :: Forums :: View topic - Initialization problem
lxdream 0.9.1
released Jun 29
Download Now
It is currently Thu May 23, 2013 6:10 pm

All times are UTC




Post new topic Reply to topic  [ 14 posts ] 
Author Message
 Post subject: Initialization problem
PostPosted: Fri Jul 31, 2009 2:32 pm 
Offline

Joined: Tue Apr 21, 2009 4:54 pm
Posts: 12
Location: Bs. As. Argentina
Trying to use version 0.91 and it close on start up, throwing this:

$ lxdream
lxdream: could not connect to socket
lxdream: No such file or directory
11:28:47 00000000 WARN Could not initialize LIRC. LIRC hotkeys will be disabled.
11:28:47 00000000 WARN Failed to load plugin: '/usr/lib/lxdream/input_lirc.so': Initialization failed
Illegal instruction


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 02, 2009 11:05 pm 
Offline
Admin

Joined: Mon Jun 26, 2006 9:47 pm
Posts: 293
Hi warkbt,

Any chance you can run it through gdb, and post the backtrace (bt) at the point where it crashes?

Thanks,
Nathan


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 04, 2009 3:40 pm 
Offline

Joined: Tue Apr 21, 2009 4:54 pm
Posts: 12
Location: Bs. As. Argentina
Here it goes.
Code:
(gdb) run
Starting program: /home/KBT/lxdream
[Thread debugging using libthread_db enabled]
[New Thread 0xb7fdd740 (LWP 2664)]
lxdream: could not connect to socket
lxdream: No such file or directory
12:40:01 00000000 WARN  Could not initialize LIRC.  LIRC hotkeys will be disabled.
12:40:01 00000000 WARN  Failed to load plugin: '/usr/lib/lxdream/input_lirc.so': Initialization failed
[New Thread 0x1960b90 (LWP 2673)]

Program received signal SIGILL, Illegal instruction.
pvr2_setup_gl_context () at pvr2/glrender.c:125
125       glClearDepth(0);
Missing separate debuginfos, use: debuginfo-install GConf2-2.24.0-1.fc10.i386 ORBit2-2.14.16-1.fc10.i386 SDL-1.2.13-7.fc10.i386 alsa-lib-1.0.20-1.fc10.i386 atk-1.24.0-1.fc10.i386 audiofile-0.2.6-9.fc10.i386 bug-buddy-2.24.2-1.fc10.i386 cairo-1.8.0-1.fc10.i386 dbus-glib-0.76-3.fc10.i386 dbus-libs-1.2.4-4.fc10.i386 e2fsprogs-libs-1.41.4-6.fc10.i386 elfutils-libelf-0.141-1.fc10.i386 esound-libs-0.2.41-1.fc10.i386 expat-2.0.1-5.i386 fontconfig-2.6.0-3.fc10.i386 freetype-2.3.7-3.fc10.i386 gamin-0.1.9-6.fc10.i386 gdbm-1.8.0-29.fc10.i386 glib2-2.20.3-1.fc10.i386 glibc-2.9-3.i686 gtk-nodoka-engine-0.7.2-1.fc10.i386 gtk2-2.14.7-8.fc10.i386 gvfs-1.0.3-10.fc10.i386 libICE-1.0.4-4.fc10.i386 libSM-1.1.0-2.fc10.i386 libX11-1.1.5-4.fc10.i386 libXau-1.0.4-1.fc10.i386 libXcomposite-0.4.0-5.fc10.i386 libXcursor-1.1.9-3.fc10.i386 libXdamage-1.1.1-4.fc9.i386 libXdmcp-1.0.2-6.fc10.i386 libXext-1.0.4-1.fc9.i386 libXfixes-4.0.3-4.fc10.i386 libXi-1.1.3-4.fc9.i386 libXinerama-1.0.3-2.fc10.i386 libXrandr-1.2.3-1.fc10.i386 libXrender-0.9.4-3.fc9.i386 libasyncns-0.7-1.fc10.i386 libcap-2.10-2.fc10.i386 libgcc-4.3.2-7.i386 libpng-1.2.37-1.fc10.i386 libselinux-2.0.78-1.fc10.i386 libstdc++-4.3.2-7.i386 libxcb-1.1.91-7.fc10.i386 lirc-libs-0.8.5-2.fc10.i386 pango-1.22.3-1.fc10.i386 pixman-0.12.0-3.fc10.i386 pulseaudio-libs-0.9.14-3.fc10.i386 zlib-1.2.3-18.fc9.i386
(gdb) backtrace
#0  pvr2_setup_gl_context () at pvr2/glrender.c:125
#1  0x080b47bd in video_gtk_init () at drivers/video_gtk.c:306
#2  0x0809211e in display_set_driver (driver=0x80e8600) at display.c:538
#3  0x0805d387 in main (argc=1, argv=0xbffff564) at main.c:244
(gdb)

That's what it shows, it that enough or do I have to install all those debuginfo asked?


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 05, 2009 11:48 pm 
Offline
Admin

Joined: Mon Jun 26, 2006 9:47 pm
Posts: 293
warkbt wrote:
Here it goes.
Code:
pvr2_setup_gl_context () at pvr2/glrender.c:125
125       glClearDepth(0);
#0  pvr2_setup_gl_context () at pvr2/glrender.c:125
#1  0x080b47bd in video_gtk_init () at drivers/video_gtk.c:306
#2  0x0809211e in display_set_driver (driver=0x80e8600) at display.c:538
#3  0x0805d387 in main (argc=1, argv=0xbffff564) at main.c:244
(gdb)

That's what it shows, it that enough or do I have to install all those debuginfo asked?


Thanks, that's what I needed to know - it's crashing inside your OpenGL drivers as soon as it tries to clear the offscreen buffer - which suggests that its offscreen buffer support is just plain broken. Which card + driver are you using? (glxinfo may be useful as well)

Cheers,
Nathan


Top
 Profile  
 
 Post subject:
PostPosted: Thu Aug 06, 2009 1:31 pm 
Offline

Joined: Tue Apr 21, 2009 4:54 pm
Posts: 12
Location: Bs. As. Argentina
Card: GeForce FX 5200/AGP/SSE/3DNOW!
Driver: 2.1.2 NVIDIA 173.14.18

Code:
$ glxinfo
name of display: :0.0
display: :0  screen: 0
direct rendering: Yes
server glx vendor string: NVIDIA Corporation
server glx version string: 1.4
server glx extensions:
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_video_sync, GLX_SGI_swap_control,
    GLX_EXT_texture_from_pixmap, GLX_ARB_multisample, GLX_NV_float_buffer
client glx vendor string: NVIDIA Corporation
client glx version string: 1.4
client glx extensions:
    GLX_ARB_get_proc_address, GLX_ARB_multisample, GLX_EXT_visual_info,
    GLX_EXT_visual_rating, GLX_EXT_import_context, GLX_SGI_video_sync,
    GLX_NV_swap_group, GLX_NV_video_out, GLX_SGIX_fbconfig, GLX_SGIX_pbuffer,
    GLX_SGI_swap_control, GLX_NV_float_buffer, GLX_ARB_fbconfig_float,
    GLX_EXT_fbconfig_packed_float, GLX_EXT_texture_from_pixmap,
    GLX_EXT_framebuffer_sRGB, GLX_NV_present_video
GLX version: 1.3
GLX extensions:
    GLX_EXT_visual_info, GLX_EXT_visual_rating, GLX_SGIX_fbconfig,
    GLX_SGIX_pbuffer, GLX_SGI_video_sync, GLX_SGI_swap_control,
    GLX_EXT_texture_from_pixmap, GLX_ARB_multisample, GLX_NV_float_buffer,
    GLX_ARB_get_proc_address
OpenGL vendor string: NVIDIA Corporation
OpenGL renderer string: GeForce FX 5200/AGP/SSE/3DNOW!
OpenGL version string: 2.1.2 NVIDIA 173.14.18
OpenGL shading language version string: 1.20 NVIDIA via Cg compiler
OpenGL extensions:
    GL_ARB_depth_texture, GL_ARB_fragment_program,
    GL_ARB_fragment_program_shadow, GL_ARB_fragment_shader,
    GL_ARB_half_float_pixel, GL_ARB_imaging, GL_ARB_multisample,
    GL_ARB_multitexture, GL_ARB_occlusion_query, GL_ARB_pixel_buffer_object,
    GL_ARB_point_parameters, GL_ARB_point_sprite, GL_ARB_shadow,
    GL_ARB_shader_objects, GL_ARB_shading_language_100,
    GL_ARB_texture_border_clamp, GL_ARB_texture_compression,
    GL_ARB_texture_cube_map, GL_ARB_texture_env_add,
    GL_ARB_texture_env_combine, GL_ARB_texture_env_dot3,
    GL_ARB_texture_mirrored_repeat, GL_ARB_texture_rectangle,
    GL_ARB_transpose_matrix, GL_ARB_vertex_buffer_object,
    GL_ARB_vertex_program, GL_ARB_vertex_shader, GL_ARB_window_pos,
    GL_S3_s3tc, GL_EXT_texture_env_add, GL_EXT_abgr, GL_EXT_bgra,
    GL_EXT_blend_color, GL_EXT_blend_func_separate, GL_EXT_blend_minmax,
    GL_EXT_blend_subtract, GL_EXT_compiled_vertex_array, GL_EXT_Cg_shader,
    GL_EXT_draw_range_elements, GL_EXT_fog_coord, GL_EXT_framebuffer_blit,
    GL_EXT_framebuffer_multisample, GL_EXT_framebuffer_object,
    GL_EXT_gpu_program_parameters, GL_EXT_multi_draw_arrays,
    GL_EXT_packed_depth_stencil, GL_EXT_packed_pixels,
    GL_EXT_paletted_texture, GL_EXT_pixel_buffer_object,
    GL_EXT_point_parameters, GL_EXT_rescale_normal, GL_EXT_secondary_color,
    GL_EXT_separate_specular_color, GL_EXT_shadow_funcs,
    GL_EXT_shared_texture_palette, GL_EXT_stencil_two_side,
    GL_EXT_stencil_wrap, GL_EXT_texture3D, GL_EXT_texture_compression_s3tc,
    GL_EXT_texture_cube_map, GL_EXT_texture_edge_clamp,
    GL_EXT_texture_env_combine, GL_EXT_texture_env_dot3,
    GL_EXT_texture_filter_anisotropic, GL_EXT_texture_lod,
    GL_EXT_texture_lod_bias, GL_EXT_texture_object, GL_EXT_texture_sRGB,
    GL_EXT_timer_query, GL_EXT_vertex_array, GL_IBM_rasterpos_clip,
    GL_IBM_texture_mirrored_repeat, GL_KTX_buffer_region, GL_NV_blend_square,
    GL_NV_copy_depth_to_color, GL_NV_depth_clamp, GL_NV_fence,
    GL_NV_float_buffer, GL_NV_fog_distance, GL_NV_fragment_program,
    GL_NV_fragment_program_option, GL_NV_framebuffer_multisample_coverage,
    GL_NV_half_float, GL_NV_light_max_exponent, GL_NV_multisample_filter_hint,
    GL_NV_occlusion_query, GL_NV_packed_depth_stencil, GL_NV_pixel_data_range,
    GL_NV_point_sprite, GL_NV_primitive_restart, GL_NV_register_combiners,
    GL_NV_register_combiners2, GL_NV_texgen_reflection,
    GL_NV_texture_compression_vtc, GL_NV_texture_env_combine4,
    GL_NV_texture_expand_normal, GL_NV_texture_rectangle,
    GL_NV_texture_shader, GL_NV_texture_shader2, GL_NV_texture_shader3,
    GL_NV_vertex_array_range, GL_NV_vertex_array_range2, GL_NV_vertex_program,
    GL_NV_vertex_program1_1, GL_NV_vertex_program2,
    GL_NV_vertex_program2_option, GL_SGIS_generate_mipmap,
    GL_SGIS_texture_lod, GL_SGIX_depth_texture, GL_SGIX_shadow,
    GL_SUN_slice_accum

120 GLX Visuals
   ....


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 10, 2009 1:09 am 
Offline
Admin

Joined: Mon Jun 26, 2006 9:47 pm
Posts: 293
Hrm. Ok that was unexpected. It's also (now that I think about it further) a bit of an odd place for it to be crashing really. Are you able to run other OpenGL applications? (ie glxgears or other games?)

Couple of things I can think of to try -
1. update to the 173.14.20 drivers (I don't think much has changed, but can always try)
2. If you've got a CPU without SSE support, this thread may be useful: http://www.nvnews.net/vbulletin/showthread.php?t=104914

Cheers,
Nathan


Top
 Profile  
 
 Post subject:
PostPosted: Tue Aug 11, 2009 12:37 am 
Offline

Joined: Tue Apr 21, 2009 4:54 pm
Posts: 12
Location: Bs. As. Argentina
I use with no problem:
-compiz (not a game)
-epsxe (FF7, FF8, Xenogears, Azure dreams, Vagrant story, Brigandine GE)
-gens (x-men clone wars)
-zsnes (chrono trigger)
-glest
-warzone2100
-scorched3d
-tremoulous
-wine (nullDC-->Record of lodoss war, Starcraft, Diablo 2)

About suggestions:
1) I will try it.
2) I tried it, but even if I disable the SSE/.. it doesn't work.


Top
 Profile  
 
 Post subject:
PostPosted: Sun Aug 16, 2009 11:21 pm 
Offline
Admin

Joined: Mon Jun 26, 2006 9:47 pm
Posts: 293
warkbt wrote:
I use with no problem:
-compiz (not a game)
...


Ok, point taken. Sorry, I really have no idea why lxdream specifically would be falling over here, and unfortunately I don't have any hardware that I can use to test those drivers myself. Have any previous versions of lxdream ever worked for you on this machine?

Cheers,
Nathan


Top
 Profile  
 
 Post subject:
PostPosted: Mon Aug 17, 2009 2:26 pm 
Offline

Joined: Tue Apr 21, 2009 4:54 pm
Posts: 12
Location: Bs. As. Argentina
This version lxdream-0.9-2.i386.rpm (that I made with alien from the .deb you add here) it works, but since lxdream is in the repolist of rpmfusion, I don't make it any more.
However I don't get it to run may be I have to rebuild from deb again?

Update: I rebuild lxdream-0.9.1-2.i386.rpm but its same as the one on rpmfusion


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 26, 2009 2:05 am 
Offline
Admin

Joined: Mon Jun 26, 2006 9:47 pm
Posts: 293
warkbt wrote:
This version lxdream-0.9-2.i386.rpm (that I made with alien from the .deb you add here) it works, but since lxdream is in the repolist of rpmfusion, I don't make it any more.
However I don't get it to run may be I have to rebuild from deb again?

Update: I rebuild lxdream-0.9.1-2.i386.rpm but its same as the one on rpmfusion


Ok, now I'm really confused... there really weren't any significant changes to the video pipeline between 0.9 and 0.9.1. Is there any chance you can build a debug version from source, and see if that gives the same stack backtrace as the binary build?

Thanks,
Nathan


Top
 Profile  
 
 Post subject:
PostPosted: Wed Aug 26, 2009 1:30 pm 
Offline

Joined: Tue Apr 21, 2009 4:54 pm
Posts: 12
Location: Bs. As. Argentina
When I print the backtrace I installed lxdream and lxdream-debuginfo.

I don't know what I have to change in lxdream.spec to build a debug version, but it builds a separate debuginfo file, when I rebuild it from source I get the same backtrace:

From normal user:
Code:
#mv Desktop/lxdream-0.9.1* rpmbuild/SOURCES/
#cd rpmbuild
#rpmbuild -ba SPECS/lxdream.spec
....

From su:
Code:
#yum install esound-devel lirc-devel pulseaudio-libs-devel SDL-devel
...
#yum remove lxdream
...
#rpm -ivh /home/KBT/rpmbuild/RPMS/i386/lxdream-*
...

Test:
Code:
(gdb) bt
#0  pvr2_setup_gl_context () at pvr2/glrender.c:125
#1  0x080b47bd in video_gtk_init () at drivers/video_gtk.c:306
#2  0x0809211e in display_set_driver (driver=0x80e8600) at display.c:538
#3  0x0805d387 in main (argc=1, argv=0xbffff564) at main.c:244


lxdream.spec:
Code:
Name:           lxdream
Version:        0.9.1
Release:        1%{?dist}
Summary:        Sega Dreamcast emulator
Group:          Applications/Emulators
License:        GPLv2+
URL:            http://www.lxdream.org
#
Source0:        %{name}-%{version}.tar.gz
BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
BuildRequires:  desktop-file-utils
BuildRequires:  esound-devel
BuildRequires:  gettext
BuildRequires:  gtk2-devel
BuildRequires:  libGL-devel
BuildRequires:  lirc-devel
BuildRequires:  pulseaudio-libs-devel
BuildRequires:  SDL-devel
#
%if 0%{?fedora} >= 11
ExclusiveArch:  i586 x86_64
%else
ExclusiveArch:  i386 x86_64
%endif

%description
lxdream is a linux-based emulator of the Sega Dreamcast system. While it is
still in heavy development (and many features are buggy or unimplemented), it
is already capable of running many demos and some games.

%prep
%setup -q

#Fix the desktop file
sed -i "s/Categories=Game;Emulator/Categories=Game;Emulator;/" lxdream.desktop

%build
%configure
make %{?_smp_mflags}

%install
rm -rf %{buildroot}
make install DESTDIR=%{buildroot}

#Validate the desktop file
desktop-file-validate $RPM_BUILD_ROOT%{_datadir}/applications/lxdream.desktop

#Find locales
%find_lang %{name}

%clean
rm -rf %{buildroot}

%files -f %{name}.lang
%defattr(-,root,root,-)
%{_bindir}/lxdream
%{_libdir}/lxdream
%{_datadir}/applications/lxdream.desktop
%{_mandir}/man1/lxdream.1*
%{_datadir}/pixmaps/lxdream
%{_datadir}/pixmaps/lxdream.png
%config(noreplace) %{_sysconfdir}/lxdreamrc

%changelog


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 05, 2009 3:13 am 
Offline
Admin

Joined: Mon Jun 26, 2006 9:47 pm
Posts: 293
warkbt wrote:
When I print the backtrace I installed lxdream and lxdream-debuginfo.

I don't know what I have to change in lxdream.spec to build a debug version, but it builds a separate debuginfo file, when I rebuild it from source I get the same backtrace:


Hi Warkbt,

I have no idea regarding rpm construction, but can you just build from source normally? ie
Code:
    tar -xzvf lxdream-0.9.1.tar.gz
    cd lxdream-0.9.1
    ./configure --disable-optimized
    make
    gdb src/lxdream

Cheers,
Nathan


Top
 Profile  
 
 Post subject:
PostPosted: Sat Sep 19, 2009 12:37 am 
Offline

Joined: Tue Apr 21, 2009 4:54 pm
Posts: 12
Location: Bs. As. Argentina
I have done what you asked and the exec keeps running fine I can bt cuz it exit normally
Code:
Starting program: /home/KBT/Desktop/lxdream-0.9.1/src/lxdream
[Thread debugging using libthread_db enabled]
[New Thread 0xb7fdd740 (LWP 6151)]
lxdream: could not connect to socket
lxdream: No such file or directory
21:35:41 00000000 WARN  Could not initialize LIRC.  LIRC hotkeys will be disabled.
21:35:41 00000000 WARN  Failed to load plugin: '/home/KBT/Desktop/lxdream-0.9.1/src/input_lirc.so': Initialization failed
[New Thread 0x17f6b90 (LWP 6160)]

(lxdream:6151): Gtk-WARNING **: Error loading icon from file '/usr/local/share/pixmaps/lxdream.png':
   Failed to open file '/usr/local/share/pixmaps/lxdream.png': No such file or directory
bt
[Thread 0x17f6b90 (LWP 6160) exited]

Program exited normally.
Missing separate debuginfos, use: debuginfo-install GConf2-2.24.0-1.fc10.i386 ORBit2-2.14.16-1.fc10.i386 SDL-1.2.13-7.fc10.i386 alsa-lib-1.0.21-2.fc10.i386 atk-1.24.0-1.fc10.i386 audiofile-0.2.6-9.fc10.i386 bug-buddy-2.24.2-1.fc10.i386 cairo-1.8.0-1.fc10.i386 dbus-glib-0.76-3.fc10.i386 dbus-libs-1.2.4-4.fc10.i386 e2fsprogs-libs-1.41.4-6.fc10.i386 elfutils-libelf-0.142-1.fc10.i386 esound-libs-0.2.41-1.fc10.i386 expat-2.0.1-5.i386 fontconfig-2.6.0-3.fc10.i386 freetype-2.3.7-3.fc10.i386 gamin-0.1.9-6.fc10.i386 gdbm-1.8.0-29.fc10.i386 glib2-2.20.3-1.fc10.i386 glibc-2.9-3.i686 gtk-nodoka-engine-0.7.2-5.fc10.i386 gtk2-2.14.7-8.fc10.i386 gvfs-1.0.3-10.fc10.i386 libICE-1.0.4-4.fc10.i386 libSM-1.1.0-2.fc10.i386 libX11-1.1.5-4.fc10.i386 libXau-1.0.4-1.fc10.i386 libXcomposite-0.4.0-5.fc10.i386 libXcursor-1.1.9-3.fc10.i386 libXdamage-1.1.1-4.fc9.i386 libXdmcp-1.0.2-6.fc10.i386 libXext-1.0.4-1.fc9.i386 libXfixes-4.0.3-4.fc10.i386 libXi-1.1.3-4.fc9.i386 libXinerama-1.0.3-2.fc10.i386 libXrandr-1.2.3-1.fc10.i386 libXrender-0.9.4-3.fc9.i386 libasyncns-0.7-1.fc10.i386 libcap-2.10-2.fc10.i386 libgcc-4.3.2-7.i386 libpng-1.2.37-1.fc10.i386 libselinux-2.0.78-1.fc10.i386 libstdc++-4.3.2-7.i386 libxcb-1.1.91-7.fc10.i386 lirc-libs-0.8.5-2.fc10.0.8.4a.i386 pango-1.22.3-1.fc10.i386 pixman-0.12.0-3.fc10.i386 pulseaudio-libs-0.9.14-3.fc10.i386 zlib-1.2.3-18.fc9.i386
(gdb) bt
No stack.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Oct 01, 2009 4:22 am 
Offline
Admin

Joined: Mon Jun 26, 2006 9:47 pm
Posts: 293
warkbt wrote:
I have done what you asked and the exec keeps running fine I can bt cuz it exit normally
Code:
Starting program: /home/KBT/Desktop/lxdream-0.9.1/src/lxdream
[Thread debugging using libthread_db enabled]
[New Thread 0xb7fdd740 (LWP 6151)]
lxdream: could not connect to socket
lxdream: No such file or directory
21:35:41 00000000 WARN  Could not initialize LIRC.  LIRC hotkeys will be disabled.
21:35:41 00000000 WARN  Failed to load plugin: '/home/KBT/Desktop/lxdream-0.9.1/src/input_lirc.so': Initialization failed
[New Thread 0x17f6b90 (LWP 6160)]

(lxdream:6151): Gtk-WARNING **: Error loading icon from file '/usr/local/share/pixmaps/lxdream.png':
   Failed to open file '/usr/local/share/pixmaps/lxdream.png': No such file or directory
bt
[Thread 0x17f6b90 (LWP 6160) exited]

Program exited normally.
Missing separate debuginfos, use: debuginfo-install GConf2-2.24.0-1.fc10.i386 ORBit2-2.14.16-1.fc10.i386 SDL-1.2.13-7.fc10.i386 alsa-lib-1.0.21-2.fc10.i386 atk-1.24.0-1.fc10.i386 audiofile-0.2.6-9.fc10.i386 bug-buddy-2.24.2-1.fc10.i386 cairo-1.8.0-1.fc10.i386 dbus-glib-0.76-3.fc10.i386 dbus-libs-1.2.4-4.fc10.i386 e2fsprogs-libs-1.41.4-6.fc10.i386 elfutils-libelf-0.142-1.fc10.i386 esound-libs-0.2.41-1.fc10.i386 expat-2.0.1-5.i386 fontconfig-2.6.0-3.fc10.i386 freetype-2.3.7-3.fc10.i386 gamin-0.1.9-6.fc10.i386 gdbm-1.8.0-29.fc10.i386 glib2-2.20.3-1.fc10.i386 glibc-2.9-3.i686 gtk-nodoka-engine-0.7.2-5.fc10.i386 gtk2-2.14.7-8.fc10.i386 gvfs-1.0.3-10.fc10.i386 libICE-1.0.4-4.fc10.i386 libSM-1.1.0-2.fc10.i386 libX11-1.1.5-4.fc10.i386 libXau-1.0.4-1.fc10.i386 libXcomposite-0.4.0-5.fc10.i386 libXcursor-1.1.9-3.fc10.i386 libXdamage-1.1.1-4.fc9.i386 libXdmcp-1.0.2-6.fc10.i386 libXext-1.0.4-1.fc9.i386 libXfixes-4.0.3-4.fc10.i386 libXi-1.1.3-4.fc9.i386 libXinerama-1.0.3-2.fc10.i386 libXrandr-1.2.3-1.fc10.i386 libXrender-0.9.4-3.fc9.i386 libasyncns-0.7-1.fc10.i386 libcap-2.10-2.fc10.i386 libgcc-4.3.2-7.i386 libpng-1.2.37-1.fc10.i386 libselinux-2.0.78-1.fc10.i386 libstdc++-4.3.2-7.i386 libxcb-1.1.91-7.fc10.i386 lirc-libs-0.8.5-2.fc10.0.8.4a.i386 pango-1.22.3-1.fc10.i386 pixman-0.12.0-3.fc10.i386 pulseaudio-libs-0.9.14-3.fc10.i386 zlib-1.2.3-18.fc9.i386
(gdb) bt
No stack.


Ok, so you're saying the debug build works correctly? that's odd... maybe your drivers don't work well with some of the optimization flags we're using - you could have a play around with the flags and try to see which ones are actually causing the problem (basically fiddle with CFLAGS in the src/Makefile), or just run the debug build, either way :)

Cheers,
Nathan


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 14 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group