Lines Matching full:toolname
195 def _get_binutils_path_in_ndk(cls, toolname: str, arch: Optional[str], platform: str
200 name = 'aarch64-linux-android-' + toolname
202 name = 'arm-linux-androideabi-' + toolname
204 name = 'x86_64-linux-android-' + toolname
206 name = 'i686-linux-android-' + toolname
213 def find_tool_path(cls, toolname: str, ndk_path: Optional[str] = None,
215 tool_info = cls.EXPECTED_TOOLS.get(toolname)
224 if toolname.startswith('llvm-') and platform == 'linux' and get_script_dir().endswith(
228 'llvm-binutils-stable' / toolname)
237 toolname, arch, platform)
239 toolname_with_arch = toolname
265 if is_executable_available(toolname, test_option):
266 return toolname