in reply to Re: Compilation failed in require at C:/mychoo/cg
in thread Compilation failed in require at C:/mychoo/cg
and if it's a case of can't find the require/use Perl script or module mentioned in line 21, then try adding the path to the folder the missing script resides in, to the list of INClude folders using use lib 'path/to/missing/script'; at the beginning of your script, prior to require/use statements. See lib. Note you add the folder the script resides in and not a filename. Alternatively require/use with full path to the script, e.g. require '/abc/xyz/somefile.pl'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Compilation failed in require at C:/mychoo/cg
by traincity (Sexton) on Jun 22, 2019 at 15:50 UTC | |
by marto (Cardinal) on Jun 22, 2019 at 16:38 UTC | |
by traincity (Sexton) on Jun 22, 2019 at 18:34 UTC | |
by marto (Cardinal) on Jun 22, 2019 at 19:13 UTC | |
by traincity (Sexton) on Jun 22, 2019 at 21:24 UTC | |
| |
by bliako (Abbot) on Jun 22, 2019 at 23:24 UTC |