mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Remove generated zend_jit_x86.c on make clean
Not removing this causes build failure when reconfiguring and rebuilding after a `make clean`, e.g. enabling/disabling ZTS. This makes https://bugs.php.net/bug.php?id=80561 more bearable. Ideally it would be rebuilt automatically on configuration change if necessary, but I have no idea how to implement this. Closes GH-6702.
This commit is contained in:
parent
fad87a24da
commit
408272b8d9
1 changed files with 1 additions and 1 deletions
|
@ -116,6 +116,7 @@ clean:
|
||||||
find . -name \*.so | xargs rm -f
|
find . -name \*.so | xargs rm -f
|
||||||
find . -name .libs -a -type d|xargs rm -rf
|
find . -name .libs -a -type d|xargs rm -rf
|
||||||
rm -f libphp.la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/*
|
rm -f libphp.la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/*
|
||||||
|
rm -f ext/opcache/jit/zend_jit_x86.c
|
||||||
|
|
||||||
distclean: clean
|
distclean: clean
|
||||||
rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h main/internal_functions_cli.c main/internal_functions.c Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h
|
rm -f Makefile config.cache config.log config.status Makefile.objects Makefile.fragments libtool main/php_config.h main/internal_functions_cli.c main/internal_functions.c Zend/zend_dtrace_gen.h Zend/zend_dtrace_gen.h.bak Zend/zend_config.h
|
||||||
|
@ -124,7 +125,6 @@ distclean: clean
|
||||||
rm -f scripts/man1/phpize.1 scripts/php-config scripts/man1/php-config.1 sapi/cli/php.1 sapi/cgi/php-cgi.1 sapi/phpdbg/phpdbg.1 ext/phar/phar.1 ext/phar/phar.phar.1
|
rm -f scripts/man1/phpize.1 scripts/php-config scripts/man1/php-config.1 sapi/cli/php.1 sapi/cgi/php-cgi.1 sapi/phpdbg/phpdbg.1 ext/phar/phar.1 ext/phar/phar.phar.1
|
||||||
rm -f sapi/fpm/php-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html
|
rm -f sapi/fpm/php-fpm.conf sapi/fpm/init.d.php-fpm sapi/fpm/php-fpm.service sapi/fpm/php-fpm.8 sapi/fpm/status.html
|
||||||
rm -f ext/phar/phar.phar ext/phar/phar.php
|
rm -f ext/phar/phar.phar ext/phar/phar.php
|
||||||
rm -f ext/opcache/jit/zend_jit_x86.c
|
|
||||||
if test "$(srcdir)" != "$(builddir)"; then \
|
if test "$(srcdir)" != "$(builddir)"; then \
|
||||||
rm -f ext/phar/phar/phar.inc; \
|
rm -f ext/phar/phar/phar.inc; \
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue