On Thursday 27 June 2002 12:39 pm, José Abílio Oliveira Matos wrote:
>   This is what I get:
> (gdb) run
> Starting program: /home/jamatos/lyx-devel/src/lyx
>
> Program received signal SIGSEGV, Segmentation fault.
> 0x4207ac9e in chunk_free () from /lib/i686/libc.so.6
> (gdb) bt
> #0  0x4207ac9e in chunk_free () from /lib/i686/libc.so.6
> #1  0x4207ac24 in free () from /lib/i686/libc.so.6
> #2  0x082a9c7a in lyx_gui::init_graphics () at
> /usr/include/g++-3/stl_alloc.h:164

So it's dying in here. I see from your follow up that you're using the xforms 
frontend (as am I). All I can say is that I have no problem. Maybe it's time 
to recompile (I seem to remember you telling us that it only takes 7 
minutes...)

Angus

// Called by the graphics cache to connect the appropriate frontend
// image loading routines to the LyX kernel.
void lyx_gui::init_graphics()
{
        using namespace grfx;

#ifdef USE_XFORMS_IMAGE_LOADER
        // connect the image loader based on the xforms library
        GImage::newImage.connect(boost::bind(&xformsGImage::newImage));
        GImage::loadableFormats.connect(boost::bind(&xformsGImage::loadableFormats));
#else
        // connect the image loader based on the XPM library
        GImage::newImage.connect(boost::bind(&GImageXPM::newImage));
        GImage::loadableFormats.connect(boost::bind(&GImageXPM::loadableFormats));
#endif
}

> #3  0x083896d7 in grfx::GCache::get () at GraphicsCache.C:33

Reply via email to