in reply to Deep Recursion Limit
Recompile your binary. This number is hardcoded into the perl source.
pp_hot.c if (CvDEPTH(cv) == 100 && ckWARN(WARN_RECURSION) && !(PERLDB_SUB && cv == GvCV(PL_DBsub))) sub_crush_depth(cv);
pp_ctl.c if (CvDEPTH(cv) == 100 && ckWARN(WARN_RECURSION)) sub_crush_depth(cv);
|
|---|