in reply to Re^2: Parsing large files
in thread Parsing large files

There is a quick test to see if your perl binary supports large files -V:uselargefiles should return this if it does:
> perl -V:uselargefiles uselargefiles='define';

If it doesn't, IMO the best way to fix your problem is to get/compile a new perl interpreter with large file support (this should be the default in recent perl versions)