Add armhf toolschain in base_deps_archive.

This commit is contained in:
Matthieu Gautier 2019-03-05 15:40:22 +01:00
parent b130b85066
commit b4d0e627c5
1 changed files with 2 additions and 0 deletions

View File

@ -231,6 +231,8 @@ def make_deps_archive(target, full=False):
files_to_archive += HOME.glob('BUILD_*/pugixml-{}'.format( files_to_archive += HOME.glob('BUILD_*/pugixml-{}'.format(
base_deps_versions['pugixml'])) base_deps_versions['pugixml']))
toolchains_subdirs = HOME.glob('**/TOOLCHAINS/*/*') toolchains_subdirs = HOME.glob('**/TOOLCHAINS/*/*')
if PLATFORM.startswith('armhf'):
files_to_archive += [SOURCE_DIR/'raspberrypi-tools']
for subdir in toolchains_subdirs: for subdir in toolchains_subdirs:
if not subdir.match('tools'): if not subdir.match('tools'):
files_to_archive.append(subdir) files_to_archive.append(subdir)