I made some code:
@Coord[3]; hilbert_i2c(3,10,190355,@Coord); print join(" ",@Coord); @Coord[2] = 35.5; @Coord[1] = 40; @Coord[0] = 36.8; print hilbert_c2i(3,10,@Coord), "\n"; use Inline C => Config => LIBS => '-lhilbert'; use Inline C => <<'END_OF_C_CODE'; Lots of C code Here with the above functions implemented END_OF_C_CODE
The script chugs along, then errors out on the compile with the following:
E:\Profiles\ADMINI~1.TEM\MYDOCU~1\VISUAL~1\MACHIN~1>perl Hilbertknn.pl Can't locate auto/main/hilbert_i2c.al in @INC (@INC contains: E:\Profi +les\ADMINI ~1.TEM\MYDOCU~1\VISUAL~1\MACHIN~1\_Inline\lib E:/Perl/lib E:/Perl/site +/lib .) at Hilbertknn.pl line 2
"Can't locate auto/main/hilbert_i2c.al in @INC" being the most relevant part obviously, but I am at a loss as to where the proper files should be. The hilbert.c file is in the inline portion of the perl script, and the Hilbert.h files is in the same directory. Where else should it go?

In reply to Re^2: Need Help with perlxstut by ketema
in thread Need Help with perlxstut by ketema

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.