Home | History | Annotate | Download | only in tools

Lines Matching full:expand_packages

46 def expand_packages(package, host, arches):
49 >>> expand_packages('gcc-{arch}-{host}', 'linux', ['arm64', 'x86_64'])
52 >>> expand_packages('gcclibs-{arch}', 'linux', ['arm64', 'x86_64'])
55 >>> expand_packages('llvm-{host}', 'linux', ['arm'])
58 >>> expand_packages('platforms', 'linux', ['arm'])
61 >>> expand_packages('libc++-{abi}', 'linux', ['arm'])
64 >>> expand_packages('binutils/{triple}', 'linux', ['arm', 'x86_64'])
67 >> expand_packages('toolchains/{toolchain}-4.9', 'linux', ['arm', 'x86'])
145 package_names = expand_packages(package, host, arches)
146 extract_paths = expand_packages(extract_path, host, arches)