This commit is contained in:
DubbleClick 2025-07-29 10:49:08 +07:00
parent 430364aacd
commit 83dae09208
2 changed files with 1 additions and 3 deletions

View File

@ -5,7 +5,6 @@ declare(strict_types=1);
namespace SPC\util;
use SPC\builder\linux\SystemUtil;
use SPC\exception\WrongUsageException;
use SPC\toolchain\ClangNativeToolchain;
use SPC\toolchain\GccNativeToolchain;
use SPC\toolchain\MuslToolchain;
@ -17,7 +16,7 @@ use SPC\toolchain\ToolchainManager;
*/
class SPCTarget
{
const array LIBC_LIST = ['musl', 'glibc'];
public const array LIBC_LIST = ['musl', 'glibc'];
/**
* Returns whether we link the C runtime in statically.

View File

@ -4,7 +4,6 @@ declare(strict_types=1);
namespace SPC\Tests\util;
use SPC\exception\WrongUsageException;
use SPC\util\SPCTarget;
/**