We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4e0d30 commit e5b13d7Copy full SHA for e5b13d7
overlays/android.nix
@@ -28,5 +28,7 @@ final: prev: prev.lib.optionalAttrs prev.stdenv.hostPlatform.isAndroid ({
28
zlib = prev.zlib.override { shared = false; static = true; };
29
30
}) // prev.lib.optionalAttrs prev.stdenv.targetPlatform.isAndroid ({
31
- bionic = prev.bionic.override { enableStatic = true; enableShared = false; };
+ # we still need the shared libraries to link against on the platform. GHC
32
+ # has been neutered to not even try loading shared libs and will use dynamic ones.
33
+ bionic = prev.bionic.override { enableStatic = true; enableShared = true; };
34
})
0 commit comments