Skip to content

Commit ce4d53f

Browse files
committed
Detect non-glibc systems.
The AppImage is known to fail on musl-based systems, see AppImage/AppImageKit#1015
1 parent eb13069 commit ce4d53f

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

proxy.php

+4
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,10 @@ function checkLoolwsdSetup()
111111
if ($return)
112112
return 'no_fontconfig';
113113

114+
exec("ldd $appImage", $output, $return);
115+
if ($return)
116+
return 'no_glibc';
117+
114118
return '';
115119
}
116120

0 commit comments

Comments
 (0)