Skip to content

Commit ce322fd

Browse files
committed
Merge branch 'PHP-8.3' into PHP-8.4
* PHP-8.3: [ci skip] Make build command for program using embed portable
2 parents e45fdd2 + a24eada commit ce322fd

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

NEWS

+3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,9 @@ PHP NEWS
3232
(nielsdos)
3333
. Fixed bug GH-17224 (UAF in importNode). (nielsdos)
3434

35+
- Embed:
36+
. Make build command for program using embed portable. (dunglas)
37+
3538
- FFI:
3639
. Fixed bug #79075 (FFI header parser chokes on comments). (nielsdos)
3740
. Fix memory leak on ZEND_FFI_TYPE_CHAR conversion failure. (nielsdos)

sapi/embed/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ To compile this, we must point the compiler to the PHP header files. The paths t
3636
We must also point the linker and the runtime loader to the `libphp.so` shared lib for linking PHP (`-lphp`) which is located at `$(php-config --prefix)/lib`. So the complete command to compile ends up being:
3737
3838
```bash
39-
$ gcc \
39+
$ cc \
4040
$(php-config --includes) \
4141
-L$(php-config --prefix)/lib \
4242
embed_sapi_basic_example.c \
4343
-lphp \
44-
-Wl,-rpath=$(php-config --prefix)/lib
44+
-Wl,-rpath,$(php-config --prefix)/lib
4545
```
4646

4747
> :memo: The embed SAPI is disabled by default. In order for the above example to compile, PHP must be built with the embed SAPI enabled. To see what SAPIs are installed, run `php-config --php-sapis`. If you don't see `embed` in the list, you'll need to rebuild PHP with `./configure --enable-embed`. The PHP shared library `libphp.so` is built when the embed SAPI is enabled.

0 commit comments

Comments
 (0)