mirror of
https://github.com/crazywhalecc/static-php-cli.git
synced 2026-03-18 21:04:52 +08:00
Add missing space
This commit is contained in:
parent
22a8191b97
commit
af62e55da8
@ -75,7 +75,7 @@ class LinuxBuilder extends UnixBuilderBase
|
|||||||
} elseif ($opcache_jit) {
|
} elseif ($opcache_jit) {
|
||||||
$opcache_jit = false;
|
$opcache_jit = false;
|
||||||
}
|
}
|
||||||
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit' : '--disable-opcache-jit';
|
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit ' : '--disable-opcache-jit ';
|
||||||
|
|
||||||
if ($this->getOption('enable-zts', false)) {
|
if ($this->getOption('enable-zts', false)) {
|
||||||
$maxExecutionTimers = $phpVersionID >= 80100 ? '--enable-zend-max-execution-timers ' : '';
|
$maxExecutionTimers = $phpVersionID >= 80100 ? '--enable-zend-max-execution-timers ' : '';
|
||||||
|
|||||||
@ -107,7 +107,7 @@ class MacOSBuilder extends UnixBuilderBase
|
|||||||
if ($opcache_jit && $phpVersionID < 80500 && !$this->getExt('opcache')) {
|
if ($opcache_jit && $phpVersionID < 80500 && !$this->getExt('opcache')) {
|
||||||
$opcache_jit = false;
|
$opcache_jit = false;
|
||||||
}
|
}
|
||||||
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit' : '--disable-opcache-jit';
|
$opcache_jit_arg = $opcache_jit ? '--enable-opcache-jit ' : '--disable-opcache-jit ';
|
||||||
|
|
||||||
$config_file_path = $this->getOption('with-config-file-path', false) ?
|
$config_file_path = $this->getOption('with-config-file-path', false) ?
|
||||||
('--with-config-file-path=' . $this->getOption('with-config-file-path') . ' ') : '';
|
('--with-config-file-path=' . $this->getOption('with-config-file-path') . ' ') : '';
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user