Re: __stack_chk_fail_local

2008-09-01 Thread gianluca massei
thanks for the help, maybe the solution will be useful: in "various Linux distributions are starting to ship with a version of the GNU C compiler which incorporates an extension which implements protection for stack-smashing". In that case the Makefile has to modified with CFLAGS = -fno-stack

Re: __stack_chk_fail_local

2008-08-30 Thread Marco Bizzarri
On Sat, Aug 30, 2008 at 3:03 PM, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Thanks! > I've resolved the problem with libraries but... I've still error with this > message: > ImportError: ./_python_grass6.so: undefined symbol: __stack_chk_fail_local > > exuse me, I'm not a guru. > > Gianluca >

Re: __stack_chk_fail_local

2008-08-30 Thread [EMAIL PROTECTED]
i" [EMAIL PROTECTED] To : "gianluca" [EMAIL PROTECTED] Cc : [email protected] Date : Sat, 30 Aug 2008 14:45:05 +0200 Subject : Re: __stack_chk_fail_local > The ldd should point you to the library which is not loaded. > > Maybe the library yo

Re: __stack_chk_fail_local

2008-08-30 Thread Marco Bizzarri
The ldd should point you to the library which is not loaded. Maybe the library you need is not in one of the normal locations in your Linux/Unix path. Normally, the linker looks for library under /lib and /usr/lib, and maybe other paths specified in /etc/ld.so.conf If you know the library is ins

Re: __stack_chk_fail_local

2008-08-30 Thread gianluca
On 30 Ago, 12:05, "Marco Bizzarri" <[EMAIL PROTECTED]> wrote: > On Fri, Aug 29, 2008 at 7:53 PM, gianluca <[EMAIL PROTECTED]> wrote: > > hy list, > > I've built _libfoo.so and libfoo.py library with swig and I've copied > > in /usr/lib/python2.5/lib-dynload/ but when import the module > > >>>impor

Re: __stack_chk_fail_local

2008-08-30 Thread Marco Bizzarri
On Fri, Aug 29, 2008 at 7:53 PM, gianluca <[EMAIL PROTECTED]> wrote: > hy list, > I've built _libfoo.so and libfoo.py library with swig and I've copied > in /usr/lib/python2.5/lib-dynload/ but when import the module > >>>import libfoo > > I've that message > > Traceback (most recent call last): >