darwin.CF: Drop clang 7 workaround

authored by toonn and committed by Jonathan Ringer 3b2d3f65 2bb0e256

+1 -18
+1 -18
pkgs/os-specific/darwin/swift-corelibs/corefoundation.nix
··· 73 73 74 74 enableParallelBuilding = true; 75 75 76 - # FIXME: Workaround for intermittent build failures of CFRuntime.c. 77 - # Based on testing this issue seems to only occur with clang_7, so 78 - # please remove this when updating the default llvm versions to 8 or 79 - # later. 80 - buildPhase = lib.optionalString true '' 81 - for i in {1..1}; do 82 - if ninja -j $NIX_BUILD_CORES; then 83 - break 84 - fi 85 - 86 - echo >&2 87 - echo "[$i/512] retrying build, workaround for #66811" >&2 88 - echo " With clang_7 the build of CFRuntime.c fails intermittently." >&2 89 - echo " See https://github.com/NixOS/nixpkgs/issues/66811 for more details." >&2 90 - echo >&2 91 - continue 92 - done 93 - ''; 76 + buildPhase = "ninja -j $NIX_BUILD_CORES"; 94 77 95 78 # TODO: their build system sorta kinda can do this, but it doesn't seem to work right now 96 79 # Also, this includes a bunch of private headers in the framework, which is not what we want