Fix #224
Fix the PHP section of the documentation to include both source files resp. object files in the example command lines
This commit is contained in:
parent
220acc3fc8
commit
396f286a02
1 changed files with 2 additions and 2 deletions
|
|
@ -136,8 +136,8 @@ least work for Linux though):
|
|||
</p>
|
||||
|
||||
<div class="code"><pre>
|
||||
gcc `php-config --includes` -fpic -c example_wrap.c
|
||||
gcc -shared example_wrap.o -o example.so
|
||||
gcc `php-config --includes` -fpic -c example_wrap.c example.c
|
||||
gcc -shared example_wrap.o example.o -o example.so
|
||||
</pre></div>
|
||||
|
||||
<H3><a name="Php_nn1_3"></a>34.1.2 Using PHP Extensions</H3>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue