diff --git a/script/install-sysroot.py b/script/install-sysroot.py index 58b4e7c74b99..05887a6f2dc8 100755 --- a/script/install-sysroot.py +++ b/script/install-sysroot.py @@ -85,10 +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 in ['amd64', 'arm64', 'i386']: - InstallSysroot('Jessie', target_arch) - else: - InstallSysroot('Wheezy', target_arch) + InstallSysroot('Jessie', target_arch) def InstallSysroot(target_platform, target_arch): diff --git a/toolchain.gypi b/toolchain.gypi index b81a63dc3cfc..f00016651c02 100644 --- a/toolchain.gypi +++ b/toolchain.gypi @@ -50,7 +50,7 @@ ['target_arch=="arm"', { # sysroot needs to be an absolute path otherwise it generates # incorrect results when passed to pkg-config - 'sysroot%': '<(source_root)/vendor/debian_wheezy_arm-sysroot', + 'sysroot%': '<(source_root)/vendor/debian_jessie_arm-sysroot', }], ['target_arch=="arm64"', { 'sysroot%': '<(source_root)/vendor/debian_jessie_arm64-sysroot',