We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 430364a commit 83dae09Copy full SHA for 83dae09
src/SPC/util/SPCTarget.php
@@ -5,7 +5,6 @@
5
namespace SPC\util;
6
7
use SPC\builder\linux\SystemUtil;
8
-use SPC\exception\WrongUsageException;
9
use SPC\toolchain\ClangNativeToolchain;
10
use SPC\toolchain\GccNativeToolchain;
11
use SPC\toolchain\MuslToolchain;
@@ -17,7 +16,7 @@
17
16
*/
18
class SPCTarget
19
{
20
- const array LIBC_LIST = ['musl', 'glibc'];
+ public const array LIBC_LIST = ['musl', 'glibc'];
21
22
/**
23
* Returns whether we link the C runtime in statically.
tests/SPC/util/SPCTargetTest.php
@@ -4,7 +4,6 @@
4
namespace SPC\Tests\util;
use SPC\util\SPCTarget;
0 commit comments