Hey,
Altho this is somewhat off-topic, Inline is still Perl :)
Anyway, on with the question. I've been trying to use gd (
GD's daddy), in an Inline C snippet. I passed a few obstacles but now I'm stuck. it seems that -lgd doesn't get included in Makefile.PL nor Makefile.
The code...
#!/usr/bin/perl
use Inline Config => FORCE_BUILD => 1,
CLEAN_AFTER_BUILD => 0;
use Inline C => Config => LIBS => '-L/usr/lib -lgd';
#I tried variations of the above line
use Inline C => Config => AUTO_INCLUDE => '#include "gd.h"';
#Apparently can't use #include "gd.h" in the code itself
use Inline C => 'DATA';
outtext();
__END__
__C__
int outtext()
{ gdImagePtr im;
FILE *out;
im = gdImageCreate(100,100);
out = fopen("foo.jpg", "wb");
gdImageJpeg(im, out,-1);
fclose(out);
gdImageDestroy(im);
return 1;
}
Error returned is :
perl: relocation error: /path/_Inline/lib/auto/gdexample_pl_2120/gdexample_pl_2120.so: undefined symbol: gdImageCreate
Needless to say gdImageCreate is a function in the gd lib.
When compiling the regular C code with normal params, it works fine :(
#include <stdio.h>
#include "gd.h"
int main(void)
{ gdImagePtr im;
FILE *out;
im = gdImageCreate(100,100);
out = fopen("foo.jpg", "wb");
gdImageJpeg(im, out,-1);
fclose(out);
gdImageDestroy(im);
return 1;
}
with
gcc -o gdexample gdexample.c -lgd
Any help would be appreciated a lot...
Greetz
Beatnik
... Quidquid perl dictum sit, altum viditur.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.