Skip to content

Commit

Permalink
Detect non-glibc systems.
Browse files Browse the repository at this point in the history
The AppImage is known to fail on musl-based systems, see

  AppImage/AppImageKit#1015
  • Loading branch information
kendy committed Jun 10, 2020
1 parent eb13069 commit 00f856e
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions proxy.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ function checkLoolwsdSetup()
if ($return)
return 'no_fontconfig';

exec("ldd $appImage", $output, $return);
if ($return)
return 'no_glibc';

return '';
}

Expand Down

0 comments on commit 00f856e

Please sign in to comment.