[Lldb-commits] [lldb] [lldb][test] Add --make argument to dotest.py (PR #93883)
Pavel Labath via lldb-commits
lldb-commits at lists.llvm.org
Fri May 31 01:02:17 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"
----------------
labath wrote:
I think it'd be nicer to move this code to dotest.py, as that's where we deal with locating the compiler, and all the other tools.
https://github.com/llvm/llvm-project/pull/93883
More information about the lldb-commits
mailing list