File tree Expand file tree Collapse file tree 6 files changed +8
-10
lines changed Expand file tree Collapse file tree 6 files changed +8
-10
lines changed Original file line number Diff line number Diff line change 90
90
--prefix=/usr \
91
91
--enable-phpdbg \
92
92
--enable-fpm \
93
- --enable-opcache \
94
93
--with-pdo-mysql=mysqlnd \
95
94
--with-mysqli=mysqlnd \
96
95
--with-pgsql \
Original file line number Diff line number Diff line change @@ -296,7 +296,6 @@ jobs:
296
296
./configure \
297
297
--disable-debug \
298
298
--enable-mbstring \
299
- --enable-opcache \
300
299
--enable-option-checking=fatal \
301
300
--enable-sockets \
302
301
--enable-werror \
Original file line number Diff line number Diff line change @@ -209,15 +209,15 @@ slightly different steps. We'll call attention where the steps differ.
209
209
# With ZTS
210
210
make distclean || \
211
211
./buildconf --force \
212
- && ./configure --enable-zts --disable-all --enable-debug --enable-opcache --enable-opcache -jit \
212
+ && ./configure --enable-zts --disable-all --enable-debug --enable-opcache-jit \
213
213
&& make -j$(nproc) \
214
214
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
215
215
|| ./sapi/cli/php -v
216
216
217
217
# Without ZTS
218
218
make distclean || \
219
219
./buildconf --force \
220
- && ./configure --disable-all --enable-debug --enable-opcache --enable-opcache -jit \
220
+ && ./configure --disable-all --enable-debug --enable-opcache-jit \
221
221
&& make -j$(nproc) \
222
222
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
223
223
|| ./sapi/cli/php -v
@@ -528,15 +528,15 @@ slightly different steps. We'll call attention where the steps differ.
528
528
# With ZTS
529
529
make distclean || \
530
530
./buildconf --force \
531
- && ./configure --enable-zts --disable-all --enable-debug --enable-opcache --enable-opcache -jit \
531
+ && ./configure --enable-zts --disable-all --enable-debug --enable-opcache-jit \
532
532
&& make -j$( nproc) \
533
533
&& make test TEST_PHP_ARGS=" -q -j$( nproc) " \
534
534
|| ./sapi/cli/php -v
535
535
536
536
# Without ZTS
537
537
make distclean || \
538
538
./buildconf --force \
539
- && ./configure --disable-all --enable-debug --enable-opcache --enable-opcache -jit \
539
+ && ./configure --disable-all --enable-debug --enable-opcache-jit \
540
540
&& make -j$( nproc) \
541
541
&& make test TEST_PHP_ARGS=" -q -j$( nproc) " \
542
542
|| ./sapi/cli/php -v
Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ ADD . /php-src/
12
12
WORKDIR /php-src
13
13
RUN ./buildconf
14
14
# Compile a minimal debug build. --enable-debug adds runtime assertions and is slower than regular builds.
15
- RUN ./configure --enable-debug --disable-all --enable-opcache && make clean && make -j$(nproc)
15
+ RUN ./configure --enable-debug --disable-all && make clean && make -j$(nproc)
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ export LDFLAGS=-L/usr/lib/i386-linux-gnu
76
76
export CFLAGS='-m32'
77
77
export CXXFLAGS='-m32'
78
78
export PKG_CONFIG=/usr/bin/i686-linux-gnu-pkg-config
79
- ./configure --disable-all --enable-opcache -- build=i686-pc-linux-gnu
79
+ ./configure --disable-all --build=i686-pc-linux-gnu
80
80
make -j$(nproc)
81
81
```
82
82
Original file line number Diff line number Diff line change @@ -31,8 +31,8 @@ When running `make` it creates these binaries in `sapi/fuzzer/`:
31
31
* ` php-fuzz-mbstring ` : Fuzzing ` mb_convert_encoding() ` (requires ` --enable-mbstring ` )
32
32
* ` php-fuzz-mbregex ` : Fuzzing ` mb_ereg[i]() ` (requires --enable-mbstring)
33
33
* ` php-fuzz-execute ` : Fuzzing the executor
34
- * ` php-fuzz-function-jit ` : Fuzzing the function JIT (requires --enable-opcache)
35
- * ` php-fuzz-tracing-jit ` : Fuzzing the tracing JIT (requires --enable-opcache)
34
+ * ` php-fuzz-function-jit ` : Fuzzing the function JIT
35
+ * ` php-fuzz-tracing-jit ` : Fuzzing the tracing JIT
36
36
37
37
Some fuzzers have a seed corpus in ` sapi/fuzzer/corpus ` . You can use it as follows:
38
38
You can’t perform that action at this time.
0 commit comments