Use Jessie sysroot for building on amd64 and i386

This commit is contained in:
Aleksei Kuzmin 2017-07-12 17:25:09 +03:00
parent c6ba812d79
commit fe0a96200d
2 changed files with 3 additions and 3 deletions

View file

@ -85,7 +85,7 @@ def main(args):
def InstallDefaultSysrootForArch(target_arch):
if target_arch not in VALID_ARCHS:
raise Error('Unknown architecture: %s' % target_arch)
if target_arch == 'arm64':
if target_arch in ['amd64', 'arm64', 'i386']:
InstallSysroot('Jessie', target_arch)
else:
InstallSysroot('Wheezy', target_arch)