Edit: Revising My Question
When building an external PHP module in C, how do I link shared objects?
|
Edit: Revising My Question When building an external PHP module in C, how do I link shared objects?
| ||||
|
feedback
|
|
If your C extension code uses a shared library, you need to declare that in the I strongly recommend using the
Since you're linking to a library, by convention you should use the Something like the following:
Then to build it, run:
Finally you need to copy your module (or If that all worked then Unfortunately I've never found a good online reference to PHP's config.m4 commands - the books for this are Sara Golemon's Extending and Embedding PHP and also parts of George Schlossnagle's Advanced PHP Programming. There's a reasonable beginners guide to creating PHP extensions by Sara Goleman here, but for the meat you really need her book. | ||||
|
feedback
|