Reshma V Kumar

Results 7 comments of Reshma V Kumar

Since it is proprietary code, exact code cannot be shared here. But when something like below is done , we get the error. ``` sub test { my($s,$q)=@_; return undef...

Thanks for the reply. Yes, it uses private XS code written for the application. I will try to come up with a standalone program that can reproduce this problem. In...

Thanks for the information. It will be helpful in debugging this issue further.

After rebuilding perl 5.38.2 on AIX with -DDEBUGGING and -DDEBUG_LEAKING_SCALARS, our local perl script fails with _Segmentation fault(coredump)_ . Following is the stack trace. ``` XX.Perl_newSV_type(my_perl = 0x20007428, type =...

That's right, our XS module was not being built with the debug flags. After rebuilding XS module with debug flags, Segmentation fault error is resolved. We also rebuilt the XS...

Yes, the issue is resolved. Our XS module was being compiled without the -D_LARGE_FILES option for a long time and everything was working fine. However, it looks like after the...

Our perl is built with -D_LARGE_FILES option. However, XS modules are not built using the normal build process. So it doesn't use any of the perl ccflags by default. We...