Skip to content

Commit

Permalink
Don't skip shared libraries for musl, but do it for android
Browse files Browse the repository at this point in the history
  • Loading branch information
jedisct1 committed Apr 28, 2024
1 parent df545b4 commit e77588f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit e77588f

Please sign in to comment.