mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-24 04:25:10 -07:00
Don't skip shared libraries for musl, but do it for android
This commit is contained in:
parent
df545b484c
commit
e77588fe8f
@ -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