You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (SPCTarget::getLibc() === 'musl' && !SPCTarget::isStatic() && !file_exists($musl_wrapper_lib)) {
58
-
thrownewRuntimeException('You are linking against musl libc dynamically, but musl libc is not installed. Please install it with `sudo dnf install musl-libc` or `sudo apt install musl`');
57
+
thrownewWrongUsageException('You are linking against musl libc dynamically, but musl libc is not installed. Please use `bin/spc doctor` to install it.');
59
58
}
60
59
if (SPCTarget::getLibc() === 'glibc' && SystemUtil::isMuslDist()) {
61
-
thrownewRuntimeException('You are linking against glibc dynamically, which is only supported on musl distros.');
60
+
thrownewWrongUsageException('You are linking against glibc dynamically, which is only supported on glibc distros.');
0 commit comments