From 8559d6466beed15d731248b37ec3d926578ff98b Mon Sep 17 00:00:00 2001 From: Randy Eckenrode Date: Mon, 1 Jul 2024 17:14:51 -0400 Subject: [PATCH] darwin.stdenv: always use a response file The bootstrap tools have been updated, so it is no longer necessary to suppress using a response file in the Darwin stdenv bootstrap. --- pkgs/stdenv/darwin/default.nix | 3 --- 1 file changed, 3 deletions(-) diff --git a/pkgs/stdenv/darwin/default.nix b/pkgs/stdenv/darwin/default.nix index c4679c394f19..684672254e3a 100644 --- a/pkgs/stdenv/darwin/default.nix +++ b/pkgs/stdenv/darwin/default.nix @@ -591,9 +591,6 @@ in extraPreHook = '' stripAllFlags=" " # the cctools "strip" command doesn't know "-s" stripDebugFlags="-S" # the cctools "strip" command does something odd with "-p" - - # Don’t assume the ld64 in bootstrap tools supports response files. Only recent versions do. - export NIX_LD_USE_RESPONSE_FILE=0 ''; })