[Lldb-commits] [lldb] [lldb][test] Add --make argument to dotest.py (PR #93883)

Vladislav Dzhidzhoev via lldb-commits lldb-commits at lists.llvm.org
Fri May 31 09:06:01 PDT 2024


================
@@ -40,7 +40,9 @@ def getMake(self, test_subdir, test_name):
         """Returns the invocation for GNU make.
         The first argument is a tuple of the relative path to the testcase
         and its filename stem."""
-        if platform.system() == "FreeBSD" or platform.system() == "NetBSD":
+        if configuration.make_path is not None:
+            make = configuration.make_path
+        elif platform.system() == "FreeBSD" or platform.system() == "NetBSD":
             make = "gmake"
         else:
             make = "make"
----------------
dzhidzhoev wrote:

Updated MR

https://github.com/llvm/llvm-project/pull/93883


More information about the lldb-commits mailing list