Fix gettext multithread segment fault bug (#603)

* Fix gettext included with multithreaded bug

* Change --enable-zts to BuildCommand
This commit is contained in:
Jerry Ma
2025-02-10 21:28:00 +09:00
committed by GitHub
parent 95d741496e
commit 1f281cd376
4 changed files with 14 additions and 7 deletions

View File

@@ -31,5 +31,6 @@ abstract class BuildCommand extends BaseCommand
$this->addOption('with-clean', null, null, 'fresh build, remove `source` dir before `make`');
$this->addOption('bloat', null, null, 'add all libraries into binary');
$this->addOption('rebuild', 'r', null, 'Delete old build and rebuild');
$this->addOption('enable-zts', null, null, 'enable ZTS support');
}
}