Don't skip shared libraries for musl, but do it for android

This commit is contained in:
Frank Denis
2024-04-28 22:52:05 +02:00
parent df545b484c
commit e77588fe8f
+1 -1
View File
@@ -198,7 +198,7 @@ pub fn build(b: *std.Build) !void {
for (libs.items) |lib| {
if (lib.isDynamicLibrary() and
!(target.result.isDarwin() or target.result.isBSD() or target.result.isGnu() or target.result.isAndroid() or target.result.isMinGW()))
!(target.result.isDarwin() or target.result.isBSD() or target.result.isGnu() or target.result.isMusl() or target.result.isMinGW()))
{
continue;
}