[llvm] [DTLTO][LLVM] Integrated Distributed ThinLTO (DTLTO) (PR #127749)
via llvm-commits
llvm-commits at lists.llvm.org
Wed Mar 12 11:35:13 PDT 2025
================
@@ -91,6 +94,19 @@ extern cl::opt<bool> SupportsHotColdNew;
/// Enable MemProf context disambiguation for thin link.
extern cl::opt<bool> EnableMemProfContextDisambiguation;
+
+cl::list<std::string> AdditionalThinLTODistributorArgs(
+ "thinlto-distributor-arg",
+ cl::desc("Additional arguments to pass to the ThinLTO distributor"));
+
+cl::opt<std::string> ThinLTORemoteCompiler(
----------------
bd1976bris wrote:
I'm happy to remove the cl::opt options and instead pass extra state when configuring the new backend. I will implement that in this PR.
https://github.com/llvm/llvm-project/pull/127749
More information about the llvm-commits
mailing list