[GIT-PULLS] [php-src] PR #23394: sapi/fuzzer: depend on PHP_BINARY_OBJS instead of PHP_SAPI_OBJS
[email protected] (Mrmaxmeier)
| Newsgroups | php.git-pulls |
|---|---|
| Message-ID | <[email protected]> |
Pull Request: https://github.com/php/php-src/pull/23394 Author: Mrmaxmeier Hi, PHP's fuzzers currently fail to build when built in isolation: ```console $ export CC=clang $ ./buildconf $ ./configure --enable-fuzzer $ make sapi/fuzzer/php-fuzz-json [...] libtool: error: 'main/internal_functions_cli.lo' is not a valid libtool object make: *** [Makefile:311: sapi/fuzzer/php-fuzz-json] Error 1 ``` This PR adjusts the dependency graph to include the missing steps. Thanks!