remove --enable-wrapper=gcc for fix-musl

This commit is contained in:
crazywhalecc 2023-10-22 17:15:12 +08:00
parent b6409bded4
commit d56c060863
No known key found for this signature in database
GPG Key ID: 1F4BDD59391F2680

View File

@ -88,7 +88,7 @@ class LinuxMuslCheck
Downloader::downloadSource($musl_version_name, $musl_source);
FileSystem::extractSource($musl_version_name, DOWNLOAD_PATH . "/{$musl_version_name}.tar.gz");
shell(true)->cd(SOURCE_PATH . "/{$musl_version_name}")
->exec('./configure --enable-wrapper=gcc')
->exec('./configure')
->exec('make -j')
->exec("{$prefix}make install");
}