Paulo Matos <pmatos <at> broadcom.com> writes:
>
>
>
> Hello,
>
> I am getting the error :
> $ PERL5LIB=/home/pmatos/perl5lib/lib/site_perl/5.14.1/:$PERL5LIB creduce ./
min.sh test.i
> Undefined subroutine &pass_blank::check_prereqs called at /home/pmatos/work/
local-install/bin/creduce line 196.
>
> This is with the git HEAD, llvm/clang HEAD installed locally and perl modules
installed locally to perl5bin.
>
> Any idea where this comes from or why it’s happening? I am really not into
perl so looking at line 196 doesn’t say much to me…
>
> Cheers,
>
> Paulo Matos
>
>
Hello,
I had the same problem. Adding "pass_blank.pm" to this list in creduce/
Makefile.in helped me:
...
dist_perllib_DATA = \
creduce_regexes.pm \
creduce_utils.pm \
pass_balanced.pm \
pass_clang.pm \
pass_crc.pm \
pass_indent.pm \
pass_ints.pm \
pass_lines.pm \
pass_peep.pm \
pass_ternary.pm
...
Vitaly