lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Francesco Abbate wrote:
> > [Note this bug doesn't just affect LuaJIT. It's a general bug in
> > unwinding and exception handling and may hit in e.g. C++ code.
> > Recompiling your code with a more recent GCC does *not* help,
> > since it still links to the broken libgcc.so provided by Red Hat.]
> 
> Hmmm, I guess that you should be able to link the static version of libgcc.

Then you'll need to statically link any library which potentially
raises exceptions, e.g. the huge standard C++ library. That's not
really feasible. But this is starting to get off-topic here.

--Mike