Hi I am trying to use Inline in perl to embed Java code in the script.
I am getting the following error .
Can't locate auto/Inline/autosplit.ix in @INC (@INC contains: C:/Perl/site/lib C
:/Perl/lib .) at C:/Perl/lib/AutoLoader.pm line 160.
at C:/Perl/lib/Inline.pm line 7
Can't locate auto/Inline/denter/autosplit.ix in @INC (@INC contains: C:/Perl/sit
e/lib C:/Perl/lib .) at C:/Perl/lib/AutoLoader.pm line 160.
at C:/Perl/lib/Inline/denter.pm line 5
Can't locate Inline\Java\default_j2sdk.pl in @INC (@INC contains: C:/Perl/site/l
ib C:/Perl/lib .) at C:/Perl/lib/Inline/Java.pm line 40.
Compilation failed in require.
BEGIN failed--compilation aborted.
Can someone help me with this
How to use Inline in perl script?
I do a lot of perl but never used inline. It looks as though you do not have the modules installed on your computer. If it is on your computer but not under the standard library directory, at the beginning of your program:
BEGIN { unshift(@INC, 'path-to-the-module'); }
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment