http://www.perlmonks.org?node_id=620740


in reply to Re^2: Regular Expression problem with $variable =~ m/C++/
in thread Regular Expression problem with $variable =~ m/C++/

You need to find your directory then point the LIB environment variable to it, or a subdirectory, as in this snippet:
use FindBin; use lib "$FindBin::Bin/lib";
jdtoronto