Unverified Commit ce24412e authored by Jörg Thalheim's avatar Jörg Thalheim Committed by GitHub
Browse files

nix: Don't use ld.gold for powerpc64 cross (#441709)

parents 51c9362e 527ea54d
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -156,6 +156,10 @@ let
      // lib.optionalAttrs (
        stdenv.isLinux
        && !(stdenv.hostPlatform.isStatic && stdenv.system == "aarch64-linux")
        && !(
          stdenv.buildPlatform.config != stdenv.hostPlatform.config
          && stdenv.hostPlatform.system == "powerpc64-linux"
        )
        && !(stdenv.system == "loongarch64-linux")
        && !(stdenv.hostPlatform.useLLVM or false)
      ) { LDFLAGS = "-fuse-ld=gold"; };