lol
fork

Configure Feed

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

cpython: fix duplicate function arguments

Merging gone bad, sorry.

-2
-2
pkgs/development/interpreters/python/cpython/default.nix
··· 45 45 # enableLTO is a subset of the enableOptimizations flag that doesn't harm reproducibility. 46 46 # enabling LTO on 32bit arch causes downstream packages to fail when linking 47 47 # enabling LTO on *-darwin causes python3 to fail when linking. 48 - , enableLTO ? stdenv.is64bit && stdenv.isLinux 49 - , reproducibleBuild ? false 50 48 # enabling LTO with musl and dynamic linking fails with a linker error although it should 51 49 # be possible as alpine is doing it: https://github.com/alpinelinux/aports/blob/a8ccb04668c7729e0f0db6c6ff5f25d7519e779b/main/python3/APKBUILD#L82 52 50 , enableLTO ? stdenv.is64bit && stdenv.isLinux && !(stdenv.hostPlatform.isMusl && !stdenv.hostPlatform.isStatic)