Skip to content

Commit 1f03827

Browse files
TimWollaarnaud-lb
authored andcommitted
Remove --enable-opcache
1 parent 1f585b2 commit 1f03827

File tree

6 files changed

+8
-10
lines changed

6 files changed

+8
-10
lines changed

‎.circleci/config.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,6 @@ jobs:
9090
--prefix=/usr \
9191
--enable-phpdbg \
9292
--enable-fpm \
93-
--enable-opcache \
9493
--with-pdo-mysql=mysqlnd \
9594
--with-mysqli=mysqlnd \
9695
--with-pgsql \

‎.github/workflows/push.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,6 @@ jobs:
296296
./configure \
297297
--disable-debug \
298298
--enable-mbstring \
299-
--enable-opcache \
300299
--enable-option-checking=fatal \
301300
--enable-sockets \
302301
--enable-werror \

‎docs/release-process.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,15 +209,15 @@ slightly different steps. We'll call attention where the steps differ.
209209
# With ZTS
210210
make distclean || \
211211
./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 \
213213
&& make -j$(nproc) \
214214
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
215215
|| ./sapi/cli/php -v
216216
217217
# Without ZTS
218218
make distclean || \
219219
./buildconf --force \
220-
&& ./configure --disable-all --enable-debug --enable-opcache --enable-opcache-jit \
220+
&& ./configure --disable-all --enable-debug --enable-opcache-jit \
221221
&& make -j$(nproc) \
222222
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
223223
|| ./sapi/cli/php -v
@@ -528,15 +528,15 @@ slightly different steps. We'll call attention where the steps differ.
528528
# With ZTS
529529
make distclean || \
530530
./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 \
532532
&& make -j$(nproc) \
533533
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
534534
|| ./sapi/cli/php -v
535535
536536
# Without ZTS
537537
make distclean || \
538538
./buildconf --force \
539-
&& ./configure --disable-all --enable-debug --enable-opcache --enable-opcache-jit \
539+
&& ./configure --disable-all --enable-debug --enable-opcache-jit \
540540
&& make -j$(nproc) \
541541
&& make test TEST_PHP_ARGS="-q -j$(nproc)" \
542542
|| ./sapi/cli/php -v

‎ext/opcache/jit/Dockerfile.arm64.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ ADD . /php-src/
1212
WORKDIR /php-src
1313
RUN ./buildconf
1414
# 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)

‎ext/opcache/jit/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ export LDFLAGS=-L/usr/lib/i386-linux-gnu
7676
export CFLAGS='-m32'
7777
export CXXFLAGS='-m32'
7878
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
8080
make -j$(nproc)
8181
```
8282

‎sapi/fuzzer/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ When running `make` it creates these binaries in `sapi/fuzzer/`:
3131
* `php-fuzz-mbstring`: Fuzzing `mb_convert_encoding()` (requires `--enable-mbstring`)
3232
* `php-fuzz-mbregex`: Fuzzing `mb_ereg[i]()` (requires --enable-mbstring)
3333
* `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
3636

3737
Some fuzzers have a seed corpus in `sapi/fuzzer/corpus`. You can use it as follows:
3838

0 commit comments

Comments
 (0)