From 38db769aafdf3e391c725d2438b482a6022cf493 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Sun, 12 Jan 2020 19:18:19 +0530 Subject: [PATCH] linkers: Clarify a comment about rspfiles --- mesonbuild/linkers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mesonbuild/linkers.py b/mesonbuild/linkers.py index 51c5733f2..a106714c4 100644 --- a/mesonbuild/linkers.py +++ b/mesonbuild/linkers.py @@ -276,7 +276,8 @@ class DynamicLinker(metaclass=abc.ABCMeta): return self.exelist.copy() def get_accepts_rsp(self) -> bool: - # TODO: is it really a matter of is_windows or is it for_windows? + # rsp files are only used when building on Windows because we want to + # avoid issues with quoting and max argument length return mesonlib.is_windows() def get_always_args(self) -> T.List[str]: