in reply to Re^2: Warning. No Inline C functions bound to Perl
in thread Warning. No Inline C functions bound to Perl
and a 'test.pl' that looks like:package Foo; use Inline C => <<'END_OF_C_CODE'; double * foo() { double a = 123.456, *x; x = &a; return x; } END_OF_C_CODE 1;
then when I run 'perl test.pl' I get:#!perl -w use Foo; use Inline C => <<'END_OF_C_CODE'; int foo2() { int x = 1234567890; return x; } END_OF_C_CODE print "All compiled\n";
with no indication that the warning was in reference to Foo.pm only.D:\pscrpt\inline>perl test.pl Warning. No Inline C functions bound to Perl Check your C function definition(s) for Inline compatibility All compiled
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Warning. No Inline C functions bound to Perl
by BrowserUk (Patriarch) on Feb 20, 2006 at 10:37 UTC |