mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-19 10:05:05 -07:00
Don't skip shared libraries for musl, but do it for android
This commit is contained in:
parent
d0eec97024
commit
15eb13283b
@ -198,7 +198,7 @@ pub fn build(b: *std.Build) !void {
|
|||||||
|
|
||||||
for (libs.items) |lib| {
|
for (libs.items) |lib| {
|
||||||
if (lib.isDynamicLibrary() and
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user