Thank you for your response. In spite of not
making the test suite, I gave it (Inline::CPP) a try. First
Program, as described in the Examples compiled,
but segfaulted the perl core on program return with:
Free to wrong pool 235e38 not b01f4.
Another test, using an already compiled library and an include path for using the respective functions, like:
use strict; use warnings; use Inline 'CPP'; use Inline CPP => Config => INC => '/I C:\\some\\tools\\' => LIBS => '/libpath:"C:\\some\\tools\\bin"' => LIBS => 'important.lib' ; my $n = ask_important_lib('question'); print $n; __END__ __CPP__ #include "important.h" int ask_important_lib(char* question) { SOMECLASS var(question); if( var.errorstatus() ) { printf("we got an error %d on question %s!\n", var.errorstatus(), +question); return -1; } return 1; }

The above wouldn't even start to compile, nmake (1.5) will complain:

... makefile(878) : fatal error U1083: target macro '$(OBJECT)' expands t +o nothing ...

So I throwed the towel. This seems to be completely non-workable on anything non-trivial C++ problem.

BTW: I tried similar w/Ruby's RubyInline on
Ruby 1.9 - also w/Visual C++ 6.

Almost the same result. Some trivial things work,
but anything referencing external include files
or libs won't work (at least with Visual C++ 6, the
system the actual Ruby 1.9.1 binary for win32 is built
).

Thanks & regards

mwa


In reply to Re^2: Status of Inline::CPP on Activeperl 5.10/Visual C++ 6 by mwah
in thread Status of Inline::CPP on Activeperl 5.10/Visual C++ 6 by mwah

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.