lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

busybox: fix minimal build with musl libc

Now we always enable large file support, as it should be cheap enough,
and avoids also problems on some filesystems #10181.

The minimal build disables (almost) all options, so it was building
without large file support. However, in musl the `off_t` is *always*
64-bit, which lead to problems, now detected during build time.

+2
+2
pkgs/os-specific/linux/busybox/default.nix
··· 46 46 CONFIG_PREFIX "$out" 47 47 CONFIG_INSTALL_NO_USR y 48 48 49 + CONFIG_LFS y 50 + 49 51 ${stdenv.lib.optionalString enableStatic '' 50 52 CONFIG_STATIC y 51 53 ''}