|
|
@ -163,7 +163,34 @@ def detect_ninja(version: str = '1.5', log: bool = False) -> str: |
|
|
|
mlog.log('Found {}-{} at {}'.format(name, found, quote_arg(n))) |
|
|
|
mlog.log('Found {}-{} at {}'.format(name, found, quote_arg(n))) |
|
|
|
return n |
|
|
|
return n |
|
|
|
|
|
|
|
|
|
|
|
def detect_scanbuild(): |
|
|
|
def get_llvm_tool_names(tool: str) -> typing.List[str]: |
|
|
|
|
|
|
|
# Ordered list of possible suffixes of LLVM executables to try. Start with |
|
|
|
|
|
|
|
# base, then try newest back to oldest (3.5 is arbitrary), and finally the |
|
|
|
|
|
|
|
# devel version. Please note that the development snapshot in Debian does |
|
|
|
|
|
|
|
# not have a distinct name. Do not move it to the beginning of the list |
|
|
|
|
|
|
|
# unless it becomes a stable release. |
|
|
|
|
|
|
|
suffixes = [ |
|
|
|
|
|
|
|
'', # base (no suffix) |
|
|
|
|
|
|
|
'-9', '90', |
|
|
|
|
|
|
|
'-8', '80', |
|
|
|
|
|
|
|
'-7', '70', |
|
|
|
|
|
|
|
'-6.0', '60', |
|
|
|
|
|
|
|
'-5.0', '50', |
|
|
|
|
|
|
|
'-4.0', '40', |
|
|
|
|
|
|
|
'-3.9', '39', |
|
|
|
|
|
|
|
'-3.8', '38', |
|
|
|
|
|
|
|
'-3.7', '37', |
|
|
|
|
|
|
|
'-3.6', '36', |
|
|
|
|
|
|
|
'-3.5', '35', |
|
|
|
|
|
|
|
'-10', # Debian development snapshot |
|
|
|
|
|
|
|
'-devel', # FreeBSD development snapshot |
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
names = [] |
|
|
|
|
|
|
|
for suffix in suffixes: |
|
|
|
|
|
|
|
names.append(tool + suffix) |
|
|
|
|
|
|
|
return names |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def detect_scanbuild() -> typing.List[str]: |
|
|
|
""" Look for scan-build binary on build platform |
|
|
|
""" Look for scan-build binary on build platform |
|
|
|
|
|
|
|
|
|
|
|
First, if a SCANBUILD env variable has been provided, give it precedence |
|
|
|
First, if a SCANBUILD env variable has been provided, give it precedence |
|
|
@ -182,20 +209,7 @@ def detect_scanbuild(): |
|
|
|
exelist = split_args(os.environ['SCANBUILD']) |
|
|
|
exelist = split_args(os.environ['SCANBUILD']) |
|
|
|
|
|
|
|
|
|
|
|
else: |
|
|
|
else: |
|
|
|
tools = [ |
|
|
|
tools = get_llvm_tool_names('scan-build') |
|
|
|
'scan-build', # base |
|
|
|
|
|
|
|
'scan-build-8', 'scan-build80', |
|
|
|
|
|
|
|
'scan-build-7', 'scan-build70', |
|
|
|
|
|
|
|
'scan-build-6.0', 'scan-build60', |
|
|
|
|
|
|
|
'scan-build-5.0', 'scan-build50', |
|
|
|
|
|
|
|
'scan-build-4.0', 'scan-build40', |
|
|
|
|
|
|
|
'scan-build-3.9', 'scan-build39', |
|
|
|
|
|
|
|
'scan-build-3.8', 'scan-build38', |
|
|
|
|
|
|
|
'scan-build-3.7', 'scan-build37', |
|
|
|
|
|
|
|
'scan-build-3.6', 'scan-build36', |
|
|
|
|
|
|
|
'scan-build-3.5', 'scan-build35', |
|
|
|
|
|
|
|
'scan-build-9', 'scan-build-devel', # development snapshot |
|
|
|
|
|
|
|
] |
|
|
|
|
|
|
|
for tool in tools: |
|
|
|
for tool in tools: |
|
|
|
if shutil.which(tool) is not None: |
|
|
|
if shutil.which(tool) is not None: |
|
|
|
exelist = [shutil.which(tool)] |
|
|
|
exelist = [shutil.which(tool)] |
|
|
@ -207,6 +221,22 @@ def detect_scanbuild(): |
|
|
|
return [tool] |
|
|
|
return [tool] |
|
|
|
return [] |
|
|
|
return [] |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def detect_clangformat() -> typing.List[str]: |
|
|
|
|
|
|
|
""" Look for clang-format binary on build platform |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Do the same thing as detect_scanbuild to find clang-format except it |
|
|
|
|
|
|
|
currently does not check the environment variable. |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Return: a single-element list of the found clang-format binary ready to be |
|
|
|
|
|
|
|
passed to Popen() |
|
|
|
|
|
|
|
""" |
|
|
|
|
|
|
|
tools = get_llvm_tool_names('clang-format') |
|
|
|
|
|
|
|
for tool in tools: |
|
|
|
|
|
|
|
path = shutil.which(tool) |
|
|
|
|
|
|
|
if path is not None: |
|
|
|
|
|
|
|
return [path] |
|
|
|
|
|
|
|
return [] |
|
|
|
|
|
|
|
|
|
|
|
def detect_native_windows_arch(): |
|
|
|
def detect_native_windows_arch(): |
|
|
|
""" |
|
|
|
""" |
|
|
|
The architecture of Windows itself: x86, amd64 or arm64 |
|
|
|
The architecture of Windows itself: x86, amd64 or arm64 |
|
|
|