================ @@ -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)] ---------------- dzhidzhoev wrote:
Fair, thanks. https://github.com/llvm/llvm-project/pull/151403 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits