about summary refs log tree commit diff
path: root/pkgs/build-support
diff options
context:
space:
mode:
authorArtturi <Artturin@artturin.com>2023-10-22 10:57:11 +0300
committerGitHub <noreply@github.com>2023-10-22 10:57:11 +0300
commit41222ebcf213cf85f5babe58d6e0f248bdc0055d (patch)
tree8617aadd0a8fc121017ceba561bb44075d7baf19 /pkgs/build-support
parent9cbf28e806f152d3d03ab592af030ad72aa45bd8 (diff)
parentbd8d94aa6909f7b5933ddea25c6a8e82f08f5832 (diff)
Merge pull request #262675 from Artturin/addcomment
expand-response-params: explain what a "response file" is
Diffstat (limited to 'pkgs/build-support')
-rw-r--r--pkgs/build-support/expand-response-params/default.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/build-support/expand-response-params/default.nix b/pkgs/build-support/expand-response-params/default.nix
index 9371b77023626..7ce15e98c8d99 100644
--- a/pkgs/build-support/expand-response-params/default.nix
+++ b/pkgs/build-support/expand-response-params/default.nix
@@ -1,5 +1,12 @@
 { stdenv }:
 
+# A "response file" is a sequence of arguments that is passed via a
+# file, rather than via argv[].
+
+# For more information see:
+# https://gcc.gnu.org/wiki/Response_Files
+# https://www.intel.com/content/www/us/en/docs/dpcpp-cpp-compiler/developer-guide-reference/2023-0/use-response-files.html
+
 stdenv.mkDerivation {
   name = "expand-response-params";
   src = ./expand-response-params.c;