From 3750c59aaa14c06ac5c5442e5d92557038c3ec05 Mon Sep 17 00:00:00 2001 From: Dan Kegel Date: Tue, 2 Jan 2018 19:31:46 +0000 Subject: [PATCH] Linux: Switch to Debian Stretch sysroot (issue #2343) --- tools/gn_args.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/gn_args.py b/tools/gn_args.py index 218410edd..f2369f86b 100644 --- a/tools/gn_args.py +++ b/tools/gn_args.py @@ -450,11 +450,11 @@ def LinuxSysrootExists(cpu): # CPU-specific sysroot directory names. # Should match the values in build/config/sysroot.gni. if cpu == 'x86': - sysroot_name = 'debian_jessie_i386-sysroot' + sysroot_name = 'debian_stretch_i386-sysroot' elif cpu == 'x64': - sysroot_name = 'debian_jessie_amd64-sysroot' + sysroot_name = 'debian_stretch_amd64-sysroot' elif cpu == 'arm': - sysroot_name = 'debian_jessie_arm-sysroot' + sysroot_name = 'debian_stretch_arm-sysroot' else: raise Exception('Unrecognized sysroot CPU: %s' % cpu)