[Lldb-commits] [lldb] [lldb] Support Darwin cross compilation for remote Linux test suite runs (PR #151403)
Jonas Devlieghere via lldb-commits
lldb-commits at lists.llvm.org
Thu Jul 31 09:53:03 PDT 2025
================
@@ -37,6 +37,9 @@ def getExtraMakeArgs(self):
def getArchCFlags(self, architecture):
"""Returns the ARCH_CFLAGS for the make system."""
+ triple = self.getTriple(architecture)
+ if triple:
+ return ["ARCH_CFLAGS=-target {}".format(triple)]
----------------
JDevlieghere wrote:
In Make, command-line variables have higher precedence than variables set in the Makefile itself, so this does not overwrite the value when it's passed by the builder.
https://github.com/llvm/llvm-project/pull/151403
More information about the lldb-commits
mailing list