blob: 37809e306ae82d55be6311cffadbb47e72d5d859 [file] [log] [blame]
Zdenek Behan508dcce2011-12-05 15:39:32 +01001#!/usr/bin/env python
2# Copyright (c) 2012 The Chromium OS Authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6"""This script manages the installed toolchains in the chroot.
7"""
8
9import copy
Mike Frysinger35247af2012-11-16 18:58:06 -050010import glob
Mike Frysinger7ccee992012-06-01 21:27:59 -040011import json
Zdenek Behan508dcce2011-12-05 15:39:32 +010012import os
Zdenek Behan508dcce2011-12-05 15:39:32 +010013
Don Garrett88b8d782014-05-13 17:30:55 -070014from chromite.cbuildbot import constants
Mike Frysinger506e75f2012-12-17 14:21:13 -050015from chromite.lib import commandline
Brian Harring503f3ab2012-03-09 21:39:41 -080016from chromite.lib import cros_build_lib
Brian Harringaf019fb2012-05-10 15:06:13 -070017from chromite.lib import osutils
Mike Frysinger35247af2012-11-16 18:58:06 -050018from chromite.lib import parallel
David James27ac4ae2012-12-03 23:16:15 -080019from chromite.lib import toolchain
Mike Frysinger35247af2012-11-16 18:58:06 -050020
21# Needs to be after chromite imports.
22import lddtree
Zdenek Behan508dcce2011-12-05 15:39:32 +010023
Mike Frysinger31596002012-12-03 23:54:24 -050024if cros_build_lib.IsInsideChroot():
25 # Only import portage after we've checked that we're inside the chroot.
26 # Outside may not have portage, in which case the above may not happen.
27 # We'll check in main() if the operation needs portage.
Don Garrett25f309a2014-03-19 14:02:12 -070028 # pylint: disable=F0401
Mike Frysinger31596002012-12-03 23:54:24 -050029 import portage
Zdenek Behan508dcce2011-12-05 15:39:32 +010030
31
Matt Tennantf1e30972012-03-02 16:30:07 -080032EMERGE_CMD = os.path.join(constants.CHROMITE_BIN_DIR, 'parallel_emerge')
Zdenek Behan508dcce2011-12-05 15:39:32 +010033PACKAGE_STABLE = '[stable]'
34PACKAGE_NONE = '[none]'
35SRC_ROOT = os.path.realpath(constants.SOURCE_ROOT)
Zdenek Behan4eb6fd22012-03-12 17:00:56 +010036
37CHROMIUMOS_OVERLAY = '/usr/local/portage/chromiumos'
38STABLE_OVERLAY = '/usr/local/portage/stable'
39CROSSDEV_OVERLAY = '/usr/local/portage/crossdev'
Zdenek Behan508dcce2011-12-05 15:39:32 +010040
41
42# TODO: The versions are stored here very much like in setup_board.
43# The goal for future is to differentiate these using a config file.
44# This is done essentially by messing with GetDesiredPackageVersions()
45DEFAULT_VERSION = PACKAGE_STABLE
46DEFAULT_TARGET_VERSION_MAP = {
Zdenek Behan508dcce2011-12-05 15:39:32 +010047}
48TARGET_VERSION_MAP = {
Zdenek Behan508dcce2011-12-05 15:39:32 +010049 'host' : {
Zdenek Behan508dcce2011-12-05 15:39:32 +010050 'gdb' : PACKAGE_NONE,
51 },
52}
53# Overrides for {gcc,binutils}-config, pick a package with particular suffix.
54CONFIG_TARGET_SUFFIXES = {
55 'binutils' : {
56 'i686-pc-linux-gnu' : '-gold',
57 'x86_64-cros-linux-gnu' : '-gold',
58 },
59}
Zdenek Behan508dcce2011-12-05 15:39:32 +010060# Global per-run cache that will be filled ondemand in by GetPackageMap()
61# function as needed.
62target_version_map = {
63}
64
65
David James66a09c42012-11-05 13:31:38 -080066class Crossdev(object):
67 """Class for interacting with crossdev and caching its output."""
68
69 _CACHE_FILE = os.path.join(CROSSDEV_OVERLAY, '.configured.json')
70 _CACHE = {}
71
72 @classmethod
73 def Load(cls, reconfig):
74 """Load crossdev cache from disk."""
David James90239b92012-11-05 15:31:34 -080075 crossdev_version = GetStablePackageVersion('sys-devel/crossdev', True)
76 cls._CACHE = {'crossdev_version': crossdev_version}
David James66a09c42012-11-05 13:31:38 -080077 if os.path.exists(cls._CACHE_FILE) and not reconfig:
78 with open(cls._CACHE_FILE) as f:
79 data = json.load(f)
David James90239b92012-11-05 15:31:34 -080080 if crossdev_version == data.get('crossdev_version'):
David James66a09c42012-11-05 13:31:38 -080081 cls._CACHE = data
82
83 @classmethod
84 def Save(cls):
85 """Store crossdev cache on disk."""
86 # Save the cache from the successful run.
87 with open(cls._CACHE_FILE, 'w') as f:
88 json.dump(cls._CACHE, f)
89
90 @classmethod
91 def GetConfig(cls, target):
92 """Returns a map of crossdev provided variables about a tuple."""
93 CACHE_ATTR = '_target_tuple_map'
94
95 val = cls._CACHE.setdefault(CACHE_ATTR, {})
96 if not target in val:
97 # Find out the crossdev tuple.
98 target_tuple = target
99 if target == 'host':
David James27ac4ae2012-12-03 23:16:15 -0800100 target_tuple = toolchain.GetHostTuple()
David James66a09c42012-11-05 13:31:38 -0800101 # Catch output of crossdev.
102 out = cros_build_lib.RunCommand(['crossdev', '--show-target-cfg',
103 '--ex-gdb', target_tuple],
104 print_cmd=False, redirect_stdout=True).output.splitlines()
105 # List of tuples split at the first '=', converted into dict.
106 val[target] = dict([x.split('=', 1) for x in out])
107 return val[target]
108
109 @classmethod
110 def UpdateTargets(cls, targets, usepkg, config_only=False):
111 """Calls crossdev to initialize a cross target.
112
113 Args:
Don Garrett25f309a2014-03-19 14:02:12 -0700114 targets: The list of targets to initialize using crossdev.
115 usepkg: Copies the commandline opts.
116 config_only: Just update.
David James66a09c42012-11-05 13:31:38 -0800117 """
118 configured_targets = cls._CACHE.setdefault('configured_targets', [])
119
120 cmdbase = ['crossdev', '--show-fail-log']
121 cmdbase.extend(['--env', 'FEATURES=splitdebug'])
122 # Pick stable by default, and override as necessary.
123 cmdbase.extend(['-P', '--oneshot'])
124 if usepkg:
125 cmdbase.extend(['-P', '--getbinpkg',
126 '-P', '--usepkgonly',
127 '--without-headers'])
128
129 overlays = '%s %s' % (CHROMIUMOS_OVERLAY, STABLE_OVERLAY)
130 cmdbase.extend(['--overlays', overlays])
131 cmdbase.extend(['--ov-output', CROSSDEV_OVERLAY])
132
133 for target in targets:
134 if config_only and target in configured_targets:
135 continue
136
137 cmd = cmdbase + ['-t', target]
138
139 for pkg in GetTargetPackages(target):
140 if pkg == 'gdb':
141 # Gdb does not have selectable versions.
142 cmd.append('--ex-gdb')
143 continue
144 # The first of the desired versions is the "primary" one.
145 version = GetDesiredPackageVersions(target, pkg)[0]
146 cmd.extend(['--%s' % pkg, version])
147
148 cmd.extend(targets[target]['crossdev'].split())
149 if config_only:
150 # In this case we want to just quietly reinit
151 cmd.append('--init-target')
152 cros_build_lib.RunCommand(cmd, print_cmd=False, redirect_stdout=True)
153 else:
154 cros_build_lib.RunCommand(cmd)
155
156 configured_targets.append(target)
157
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100158
Zdenek Behan508dcce2011-12-05 15:39:32 +0100159def GetPackageMap(target):
160 """Compiles a package map for the given target from the constants.
161
162 Uses a cache in target_version_map, that is dynamically filled in as needed,
163 since here everything is static data and the structuring is for ease of
164 configurability only.
165
166 args:
167 target - the target for which to return a version map
168
169 returns a map between packages and desired versions in internal format
170 (using the PACKAGE_* constants)
171 """
172 if target in target_version_map:
173 return target_version_map[target]
174
175 # Start from copy of the global defaults.
176 result = copy.copy(DEFAULT_TARGET_VERSION_MAP)
177
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100178 for pkg in GetTargetPackages(target):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100179 # prefer any specific overrides
180 if pkg in TARGET_VERSION_MAP.get(target, {}):
181 result[pkg] = TARGET_VERSION_MAP[target][pkg]
182 else:
183 # finally, if not already set, set a sane default
184 result.setdefault(pkg, DEFAULT_VERSION)
185 target_version_map[target] = result
186 return result
187
188
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100189def GetTargetPackages(target):
190 """Returns a list of packages for a given target."""
David James66a09c42012-11-05 13:31:38 -0800191 conf = Crossdev.GetConfig(target)
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100192 # Undesired packages are denoted by empty ${pkg}_pn variable.
193 return [x for x in conf['crosspkgs'].strip("'").split() if conf[x+'_pn']]
194
195
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100196# Portage helper functions:
197def GetPortagePackage(target, package):
198 """Returns a package name for the given target."""
David James66a09c42012-11-05 13:31:38 -0800199 conf = Crossdev.GetConfig(target)
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100200 # Portage category:
Zdenek Behan508dcce2011-12-05 15:39:32 +0100201 if target == 'host':
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100202 category = conf[package + '_category']
Zdenek Behan508dcce2011-12-05 15:39:32 +0100203 else:
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100204 category = conf['category']
205 # Portage package:
206 pn = conf[package + '_pn']
207 # Final package name:
208 assert(category)
209 assert(pn)
210 return '%s/%s' % (category, pn)
211
212
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100213def IsPackageDisabled(target, package):
214 """Returns if the given package is not used for the target."""
215 return GetDesiredPackageVersions(target, package) == [PACKAGE_NONE]
216
Liam McLoughlinf54a0782012-05-17 23:36:52 +0100217
David James66a09c42012-11-05 13:31:38 -0800218def GetInstalledPackageVersions(atom):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100219 """Extracts the list of current versions of a target, package pair.
220
221 args:
David James66a09c42012-11-05 13:31:38 -0800222 atom - the atom to operate on (e.g. sys-devel/gcc)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100223
224 returns the list of versions of the package currently installed.
225 """
Zdenek Behan508dcce2011-12-05 15:39:32 +0100226 versions = []
Mike Frysinger506e75f2012-12-17 14:21:13 -0500227 # pylint: disable=E1101
David James90239b92012-11-05 15:31:34 -0800228 for pkg in portage.db['/']['vartree'].dbapi.match(atom, use_cache=0):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100229 version = portage.versions.cpv_getversion(pkg)
230 versions.append(version)
231 return versions
232
233
David James90239b92012-11-05 15:31:34 -0800234def GetStablePackageVersion(atom, installed):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100235 """Extracts the current stable version for a given package.
236
237 args:
238 target, package - the target/package to operate on eg. i686-pc-linux-gnu,gcc
Zdenek Behan699ddd32012-04-13 07:14:08 +0200239 installed - Whether we want installed packages or ebuilds
Zdenek Behan508dcce2011-12-05 15:39:32 +0100240
241 returns a string containing the latest version.
242 """
David James90239b92012-11-05 15:31:34 -0800243 pkgtype = 'vartree' if installed else 'porttree'
Mike Frysinger506e75f2012-12-17 14:21:13 -0500244 # pylint: disable=E1101
David James90239b92012-11-05 15:31:34 -0800245 cpv = portage.best(portage.db['/'][pkgtype].dbapi.match(atom, use_cache=0))
246 return portage.versions.cpv_getversion(cpv) if cpv else None
Zdenek Behan508dcce2011-12-05 15:39:32 +0100247
248
Zdenek Behan699ddd32012-04-13 07:14:08 +0200249def VersionListToNumeric(target, package, versions, installed):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100250 """Resolves keywords in a given version list for a particular package.
251
252 Resolving means replacing PACKAGE_STABLE with the actual number.
253
254 args:
255 target, package - the target/package to operate on eg. i686-pc-linux-gnu,gcc
256 versions - list of versions to resolve
257
258 returns list of purely numeric versions equivalent to argument
259 """
260 resolved = []
David James90239b92012-11-05 15:31:34 -0800261 atom = GetPortagePackage(target, package)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100262 for version in versions:
263 if version == PACKAGE_STABLE:
David James90239b92012-11-05 15:31:34 -0800264 resolved.append(GetStablePackageVersion(atom, installed))
Zdenek Behan508dcce2011-12-05 15:39:32 +0100265 elif version != PACKAGE_NONE:
266 resolved.append(version)
267 return resolved
268
269
270def GetDesiredPackageVersions(target, package):
271 """Produces the list of desired versions for each target, package pair.
272
273 The first version in the list is implicitly treated as primary, ie.
274 the version that will be initialized by crossdev and selected.
275
276 If the version is PACKAGE_STABLE, it really means the current version which
277 is emerged by using the package atom with no particular version key.
278 Since crossdev unmasks all packages by default, this will actually
279 mean 'unstable' in most cases.
280
281 args:
282 target, package - the target/package to operate on eg. i686-pc-linux-gnu,gcc
283
284 returns a list composed of either a version string, PACKAGE_STABLE
285 """
286 packagemap = GetPackageMap(target)
287
288 versions = []
289 if package in packagemap:
290 versions.append(packagemap[package])
291
292 return versions
293
294
295def TargetIsInitialized(target):
296 """Verifies if the given list of targets has been correctly initialized.
297
298 This determines whether we have to call crossdev while emerging
299 toolchain packages or can do it using emerge. Emerge is naturally
300 preferred, because all packages can be updated in a single pass.
301
302 args:
303 targets - list of individual cross targets which are checked
304
305 returns True if target is completely initialized
306 returns False otherwise
307 """
308 # Check if packages for the given target all have a proper version.
309 try:
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100310 for package in GetTargetPackages(target):
David James66a09c42012-11-05 13:31:38 -0800311 atom = GetPortagePackage(target, package)
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100312 # Do we even want this package && is it initialized?
David James90239b92012-11-05 15:31:34 -0800313 if not IsPackageDisabled(target, package) and not (
314 GetStablePackageVersion(atom, True) and
315 GetStablePackageVersion(atom, False)):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100316 return False
317 return True
318 except cros_build_lib.RunCommandError:
319 # Fails - The target has likely never been initialized before.
320 return False
321
322
323def RemovePackageMask(target):
324 """Removes a package.mask file for the given platform.
325
326 The pre-existing package.mask files can mess with the keywords.
327
328 args:
329 target - the target for which to remove the file
330 """
331 maskfile = os.path.join('/etc/portage/package.mask', 'cross-' + target)
Brian Harringaf019fb2012-05-10 15:06:13 -0700332 osutils.SafeUnlink(maskfile)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100333
334
Zdenek Behan508dcce2011-12-05 15:39:32 +0100335# Main functions performing the actual update steps.
Mike Frysingerc880a962013-11-08 13:59:06 -0500336def RebuildLibtool():
337 """Rebuild libtool as needed
338
339 Libtool hardcodes full paths to internal gcc files, so whenever we upgrade
340 gcc, libtool will break. We can't use binary packages either as those will
341 most likely be compiled against the previous version of gcc.
342 """
343 needs_update = False
344 with open('/usr/bin/libtool') as f:
345 for line in f:
346 # Look for a line like:
347 # sys_lib_search_path_spec="..."
348 # It'll be a list of paths and gcc will be one of them.
349 if line.startswith('sys_lib_search_path_spec='):
350 line = line.rstrip()
351 for path in line.split('=', 1)[1].strip('"').split():
352 if not os.path.exists(path):
353 print 'Rebuilding libtool after gcc upgrade'
354 print ' %s' % line
355 print ' missing path: %s' % path
356 needs_update = True
357 break
358
359 if needs_update:
360 break
361
362 if needs_update:
363 cmd = [EMERGE_CMD, '--oneshot', 'sys-devel/libtool']
364 cros_build_lib.RunCommand(cmd)
365
366
Zdenek Behan508dcce2011-12-05 15:39:32 +0100367def UpdateTargets(targets, usepkg):
368 """Determines which packages need update/unmerge and defers to portage.
369
370 args:
371 targets - the list of targets to update
372 usepkg - copies the commandline option
373 """
David James90239b92012-11-05 15:31:34 -0800374 # Remove keyword files created by old versions of cros_setup_toolchains.
375 osutils.SafeUnlink('/etc/portage/package.keywords/cross-host')
Zdenek Behan508dcce2011-12-05 15:39:32 +0100376
377 # For each target, we do two things. Figure out the list of updates,
378 # and figure out the appropriate keywords/masks. Crossdev will initialize
379 # these, but they need to be regenerated on every update.
380 print 'Determining required toolchain updates...'
David James90239b92012-11-05 15:31:34 -0800381 mergemap = {}
Zdenek Behan508dcce2011-12-05 15:39:32 +0100382 for target in targets:
383 # Record the highest needed version for each target, for masking purposes.
384 RemovePackageMask(target)
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100385 for package in GetTargetPackages(target):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100386 # Portage name for the package
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100387 if IsPackageDisabled(target, package):
388 continue
389 pkg = GetPortagePackage(target, package)
David James66a09c42012-11-05 13:31:38 -0800390 current = GetInstalledPackageVersions(pkg)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100391 desired = GetDesiredPackageVersions(target, package)
Zdenek Behan699ddd32012-04-13 07:14:08 +0200392 desired_num = VersionListToNumeric(target, package, desired, False)
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100393 mergemap[pkg] = set(desired_num).difference(current)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100394
Zdenek Behan508dcce2011-12-05 15:39:32 +0100395 packages = []
396 for pkg in mergemap:
397 for ver in mergemap[pkg]:
Zdenek Behan677b6d82012-04-11 05:31:47 +0200398 if ver != PACKAGE_NONE:
David James90239b92012-11-05 15:31:34 -0800399 packages.append(pkg)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100400
401 if not packages:
402 print 'Nothing to update!'
David Jamesf8c672f2012-11-06 13:38:11 -0800403 return False
Zdenek Behan508dcce2011-12-05 15:39:32 +0100404
405 print 'Updating packages:'
406 print packages
407
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100408 cmd = [EMERGE_CMD, '--oneshot', '--update']
Zdenek Behan508dcce2011-12-05 15:39:32 +0100409 if usepkg:
410 cmd.extend(['--getbinpkg', '--usepkgonly'])
411
412 cmd.extend(packages)
413 cros_build_lib.RunCommand(cmd)
David Jamesf8c672f2012-11-06 13:38:11 -0800414 return True
Zdenek Behan508dcce2011-12-05 15:39:32 +0100415
416
417def CleanTargets(targets):
418 """Unmerges old packages that are assumed unnecessary."""
419 unmergemap = {}
420 for target in targets:
Zdenek Behanf4d18a02012-03-22 15:45:05 +0100421 for package in GetTargetPackages(target):
Zdenek Behan4eb6fd22012-03-12 17:00:56 +0100422 if IsPackageDisabled(target, package):
423 continue
424 pkg = GetPortagePackage(target, package)
David James66a09c42012-11-05 13:31:38 -0800425 current = GetInstalledPackageVersions(pkg)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100426 desired = GetDesiredPackageVersions(target, package)
Zdenek Behan699ddd32012-04-13 07:14:08 +0200427 desired_num = VersionListToNumeric(target, package, desired, True)
428 if not set(desired_num).issubset(current):
429 print 'Some packages have been held back, skipping clean!'
430 return
Zdenek Behan508dcce2011-12-05 15:39:32 +0100431 unmergemap[pkg] = set(current).difference(desired_num)
432
433 # Cleaning doesn't care about consistency and rebuilding package.* files.
434 packages = []
435 for pkg, vers in unmergemap.iteritems():
436 packages.extend('=%s-%s' % (pkg, ver) for ver in vers if ver != '9999')
437
438 if packages:
439 print 'Cleaning packages:'
440 print packages
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100441 cmd = [EMERGE_CMD, '--unmerge']
Zdenek Behan508dcce2011-12-05 15:39:32 +0100442 cmd.extend(packages)
443 cros_build_lib.RunCommand(cmd)
444 else:
445 print 'Nothing to clean!'
446
447
448def SelectActiveToolchains(targets, suffixes):
449 """Runs gcc-config and binutils-config to select the desired.
450
451 args:
452 targets - the targets to select
453 """
454 for package in ['gcc', 'binutils']:
455 for target in targets:
456 # Pick the first version in the numbered list as the selected one.
457 desired = GetDesiredPackageVersions(target, package)
Zdenek Behan699ddd32012-04-13 07:14:08 +0200458 desired_num = VersionListToNumeric(target, package, desired, True)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100459 desired = desired_num[0]
460 # *-config does not play revisions, strip them, keep just PV.
461 desired = portage.versions.pkgsplit('%s-%s' % (package, desired))[1]
462
463 if target == 'host':
464 # *-config is the only tool treating host identically (by tuple).
David James27ac4ae2012-12-03 23:16:15 -0800465 target = toolchain.GetHostTuple()
Zdenek Behan508dcce2011-12-05 15:39:32 +0100466
467 # And finally, attach target to it.
468 desired = '%s-%s' % (target, desired)
469
470 # Target specific hacks
471 if package in suffixes:
472 if target in suffixes[package]:
473 desired += suffixes[package][target]
474
David James7ec5efc2012-11-06 09:39:49 -0800475 extra_env = {'CHOST': target}
476 cmd = ['%s-config' % package, '-c', target]
Zdenek Behan508dcce2011-12-05 15:39:32 +0100477 current = cros_build_lib.RunCommand(cmd, print_cmd=False,
David James7ec5efc2012-11-06 09:39:49 -0800478 redirect_stdout=True, extra_env=extra_env).output.splitlines()[0]
Zdenek Behan508dcce2011-12-05 15:39:32 +0100479 # Do not gcc-config when the current is live or nothing needs to be done.
480 if current != desired and current != '9999':
481 cmd = [ package + '-config', desired ]
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100482 cros_build_lib.RunCommand(cmd, print_cmd=False)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100483
484
Mike Frysinger35247af2012-11-16 18:58:06 -0500485def ExpandTargets(targets_wanted):
486 """Expand any possible toolchain aliases into full targets
487
488 This will expand 'all' and 'sdk' into the respective toolchain tuples.
489
490 Args:
491 targets_wanted: The targets specified by the user.
Mike Frysinger1a736a82013-12-12 01:50:59 -0500492
Mike Frysinger35247af2012-11-16 18:58:06 -0500493 Returns:
494 Full list of tuples with pseudo targets removed.
495 """
David James27ac4ae2012-12-03 23:16:15 -0800496 alltargets = toolchain.GetAllTargets()
Mike Frysinger35247af2012-11-16 18:58:06 -0500497 targets_wanted = set(targets_wanted)
498 if targets_wanted == set(['all']):
499 targets = alltargets
500 elif targets_wanted == set(['sdk']):
501 # Filter out all the non-sdk toolchains as we don't want to mess
502 # with those in all of our builds.
David James27ac4ae2012-12-03 23:16:15 -0800503 targets = toolchain.FilterToolchains(alltargets, 'sdk', True)
Mike Frysinger35247af2012-11-16 18:58:06 -0500504 else:
505 # Verify user input.
506 nonexistent = targets_wanted.difference(alltargets)
507 if nonexistent:
508 raise ValueError('Invalid targets: %s', ','.join(nonexistent))
509 targets = dict((t, alltargets[t]) for t in targets_wanted)
510 return targets
511
512
David Jamesf8c672f2012-11-06 13:38:11 -0800513def UpdateToolchains(usepkg, deleteold, hostonly, reconfig,
514 targets_wanted, boards_wanted):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100515 """Performs all steps to create a synchronized toolchain enviroment.
516
517 args:
518 arguments correspond to the given commandline flags
519 """
David Jamesf8c672f2012-11-06 13:38:11 -0800520 targets, crossdev_targets, reconfig_targets = {}, {}, {}
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100521 if not hostonly:
522 # For hostonly, we can skip most of the below logic, much of which won't
523 # work on bare systems where this is useful.
Mike Frysinger35247af2012-11-16 18:58:06 -0500524 targets = ExpandTargets(targets_wanted)
Mike Frysinger7ccee992012-06-01 21:27:59 -0400525
Mike Frysinger7ccee992012-06-01 21:27:59 -0400526 # Now re-add any targets that might be from this board. This is
527 # to allow unofficial boards to declare their own toolchains.
528 for board in boards_wanted:
David James27ac4ae2012-12-03 23:16:15 -0800529 targets.update(toolchain.GetToolchainsForBoard(board))
Zdenek Behan508dcce2011-12-05 15:39:32 +0100530
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100531 # First check and initialize all cross targets that need to be.
Mike Frysinger7ccee992012-06-01 21:27:59 -0400532 for target in targets:
533 if TargetIsInitialized(target):
534 reconfig_targets[target] = targets[target]
535 else:
536 crossdev_targets[target] = targets[target]
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100537 if crossdev_targets:
Zdenek Behan8be29ba2012-05-29 23:10:34 +0200538 print 'The following targets need to be re-initialized:'
539 print crossdev_targets
David James66a09c42012-11-05 13:31:38 -0800540 Crossdev.UpdateTargets(crossdev_targets, usepkg)
Zdenek Behan8be29ba2012-05-29 23:10:34 +0200541 # Those that were not initialized may need a config update.
David James66a09c42012-11-05 13:31:38 -0800542 Crossdev.UpdateTargets(reconfig_targets, usepkg, config_only=True)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100543
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100544 # We want host updated.
Mike Frysinger7ccee992012-06-01 21:27:59 -0400545 targets['host'] = {}
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100546
547 # Now update all packages.
David Jamesf8c672f2012-11-06 13:38:11 -0800548 if UpdateTargets(targets, usepkg) or crossdev_targets or reconfig:
549 SelectActiveToolchains(targets, CONFIG_TARGET_SUFFIXES)
David James7ec5efc2012-11-06 09:39:49 -0800550
551 if deleteold:
552 CleanTargets(targets)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100553
Mike Frysingerc880a962013-11-08 13:59:06 -0500554 # Now that we've cleared out old versions, see if we need to rebuild
555 # anything. Can't do this earlier as it might not be broken.
556 RebuildLibtool()
557
Zdenek Behan508dcce2011-12-05 15:39:32 +0100558
Mike Frysinger35247af2012-11-16 18:58:06 -0500559def ShowBoardConfig(board):
560 """Show the toolchain tuples used by |board|
561
562 Args:
563 board: The board to query.
564 """
David James27ac4ae2012-12-03 23:16:15 -0800565 toolchains = toolchain.GetToolchainsForBoard(board)
Mike Frysinger35247af2012-11-16 18:58:06 -0500566 # Make sure we display the default toolchain first.
David James27ac4ae2012-12-03 23:16:15 -0800567 print ','.join(
568 toolchain.FilterToolchains(toolchains, 'default', True).keys() +
569 toolchain.FilterToolchains(toolchains, 'default', False).keys())
Mike Frysinger35247af2012-11-16 18:58:06 -0500570
571
Mike Frysinger35247af2012-11-16 18:58:06 -0500572def GeneratePathWrapper(root, wrappath, path):
573 """Generate a shell script to execute another shell script
574
575 Since we can't symlink a wrapped ELF (see GenerateLdsoWrapper) because the
576 argv[0] won't be pointing to the correct path, generate a shell script that
577 just executes another program with its full path.
578
579 Args:
580 root: The root tree to generate scripts inside of
581 wrappath: The full path (inside |root|) to create the wrapper
582 path: The target program which this wrapper will execute
583 """
584 replacements = {
585 'path': path,
586 'relroot': os.path.relpath('/', os.path.dirname(wrappath)),
587 }
588 wrapper = """#!/bin/sh
589base=$(realpath "$0")
590basedir=${base%%/*}
591exec "${basedir}/%(relroot)s%(path)s" "$@"
592""" % replacements
593 root_wrapper = root + wrappath
594 if os.path.islink(root_wrapper):
595 os.unlink(root_wrapper)
596 else:
597 osutils.SafeMakedirs(os.path.dirname(root_wrapper))
598 osutils.WriteFile(root_wrapper, wrapper)
Mike Frysinger60ec1012013-10-21 00:11:10 -0400599 os.chmod(root_wrapper, 0o755)
Mike Frysinger35247af2012-11-16 18:58:06 -0500600
601
602def FileIsCrosSdkElf(elf):
603 """Determine if |elf| is an ELF that we execute in the cros_sdk
604
605 We don't need this to be perfect, just quick. It makes sure the ELF
606 is a 64bit LSB x86_64 ELF. That is the native type of cros_sdk.
607
608 Args:
609 elf: The file to check
Mike Frysinger1a736a82013-12-12 01:50:59 -0500610
Mike Frysinger35247af2012-11-16 18:58:06 -0500611 Returns:
612 True if we think |elf| is a native ELF
613 """
614 with open(elf) as f:
615 data = f.read(20)
616 # Check the magic number, EI_CLASS, EI_DATA, and e_machine.
617 return (data[0:4] == '\x7fELF' and
618 data[4] == '\x02' and
619 data[5] == '\x01' and
620 data[18] == '\x3e')
621
622
623def IsPathPackagable(ptype, path):
624 """Should the specified file be included in a toolchain package?
625
626 We only need to handle files as we'll create dirs as we need them.
627
628 Further, trim files that won't be useful:
629 - non-english translations (.mo) since it'd require env vars
630 - debug files since these are for the host compiler itself
631 - info/man pages as they're big, and docs are online, and the
632 native docs should work fine for the most part (`man gcc`)
633
634 Args:
635 ptype: A string describing the path type (i.e. 'file' or 'dir' or 'sym')
636 path: The full path to inspect
Mike Frysinger1a736a82013-12-12 01:50:59 -0500637
Mike Frysinger35247af2012-11-16 18:58:06 -0500638 Returns:
639 True if we want to include this path in the package
640 """
641 return not (ptype in ('dir',) or
642 path.startswith('/usr/lib/debug/') or
643 os.path.splitext(path)[1] == '.mo' or
644 ('/man/' in path or '/info/' in path))
645
646
647def ReadlinkRoot(path, root):
648 """Like os.readlink(), but relative to a |root|
649
650 Args:
651 path: The symlink to read
652 root: The path to use for resolving absolute symlinks
Mike Frysinger1a736a82013-12-12 01:50:59 -0500653
Mike Frysinger35247af2012-11-16 18:58:06 -0500654 Returns:
655 A fully resolved symlink path
656 """
657 while os.path.islink(root + path):
658 path = os.path.join(os.path.dirname(path), os.readlink(root + path))
659 return path
660
661
662def _GetFilesForTarget(target, root='/'):
663 """Locate all the files to package for |target|
664
665 This does not cover ELF dependencies.
666
667 Args:
668 target: The toolchain target name
669 root: The root path to pull all packages from
Mike Frysinger1a736a82013-12-12 01:50:59 -0500670
Mike Frysinger35247af2012-11-16 18:58:06 -0500671 Returns:
672 A tuple of a set of all packable paths, and a set of all paths which
673 are also native ELFs
674 """
675 paths = set()
676 elfs = set()
677
678 # Find all the files owned by the packages for this target.
679 for pkg in GetTargetPackages(target):
680 # Ignore packages that are part of the target sysroot.
681 if pkg in ('kernel', 'libc'):
682 continue
683
684 atom = GetPortagePackage(target, pkg)
685 cat, pn = atom.split('/')
686 ver = GetInstalledPackageVersions(atom)[0]
687 cros_build_lib.Info('packaging %s-%s', atom, ver)
688
689 # pylint: disable=E1101
690 dblink = portage.dblink(cat, pn + '-' + ver, myroot=root,
691 settings=portage.settings)
692 contents = dblink.getcontents()
693 for obj in contents:
694 ptype = contents[obj][0]
695 if not IsPathPackagable(ptype, obj):
696 continue
697
698 if ptype == 'obj':
699 # For native ELFs, we need to pull in their dependencies too.
700 if FileIsCrosSdkElf(obj):
701 elfs.add(obj)
702 paths.add(obj)
703
704 return paths, elfs
705
706
707def _BuildInitialPackageRoot(output_dir, paths, elfs, ldpaths,
708 path_rewrite_func=lambda x:x, root='/'):
709 """Link in all packable files and their runtime dependencies
710
711 This also wraps up executable ELFs with helper scripts.
712
713 Args:
714 output_dir: The output directory to store files
715 paths: All the files to include
716 elfs: All the files which are ELFs (a subset of |paths|)
717 ldpaths: A dict of static ldpath information
718 path_rewrite_func: User callback to rewrite paths in output_dir
719 root: The root path to pull all packages/files from
720 """
721 # Link in all the files.
722 sym_paths = []
723 for path in paths:
724 new_path = path_rewrite_func(path)
725 dst = output_dir + new_path
726 osutils.SafeMakedirs(os.path.dirname(dst))
727
728 # Is this a symlink which we have to rewrite or wrap?
729 # Delay wrap check until after we have created all paths.
730 src = root + path
731 if os.path.islink(src):
732 tgt = os.readlink(src)
733 if os.path.sep in tgt:
734 sym_paths.append((new_path, lddtree.normpath(ReadlinkRoot(src, root))))
735
736 # Rewrite absolute links to relative and then generate the symlink
737 # ourselves. All other symlinks can be hardlinked below.
738 if tgt[0] == '/':
739 tgt = os.path.relpath(tgt, os.path.dirname(new_path))
740 os.symlink(tgt, dst)
741 continue
742
743 os.link(src, dst)
744
745 # Now see if any of the symlinks need to be wrapped.
746 for sym, tgt in sym_paths:
747 if tgt in elfs:
748 GeneratePathWrapper(output_dir, sym, tgt)
749
750 # Locate all the dependencies for all the ELFs. Stick them all in the
751 # top level "lib" dir to make the wrapper simpler. This exact path does
752 # not matter since we execute ldso directly, and we tell the ldso the
753 # exact path to search for its libraries.
754 libdir = os.path.join(output_dir, 'lib')
755 osutils.SafeMakedirs(libdir)
756 donelibs = set()
757 for elf in elfs:
Mike Frysingerea7688e2014-07-31 22:40:33 -0400758 e = lddtree.ParseELF(elf, root=root, ldpaths=ldpaths)
Mike Frysinger35247af2012-11-16 18:58:06 -0500759 interp = e['interp']
760 if interp:
761 # Generate a wrapper if it is executable.
Mike Frysingerc2ec0902013-03-26 01:28:45 -0400762 interp = os.path.join('/lib', os.path.basename(interp))
763 lddtree.GenerateLdsoWrapper(output_dir, path_rewrite_func(elf), interp,
764 libpaths=e['rpath'] + e['runpath'])
Mike Frysinger35247af2012-11-16 18:58:06 -0500765
766 for lib, lib_data in e['libs'].iteritems():
767 if lib in donelibs:
768 continue
769
770 src = path = lib_data['path']
771 if path is None:
772 cros_build_lib.Warning('%s: could not locate %s', elf, lib)
773 continue
774 donelibs.add(lib)
775
776 # Needed libs are the SONAME, but that is usually a symlink, not a
777 # real file. So link in the target rather than the symlink itself.
778 # We have to walk all the possible symlinks (SONAME could point to a
779 # symlink which points to a symlink), and we have to handle absolute
780 # ourselves (since we have a "root" argument).
781 dst = os.path.join(libdir, os.path.basename(path))
782 src = ReadlinkRoot(src, root)
783
784 os.link(root + src, dst)
785
786
787def _EnvdGetVar(envd, var):
788 """Given a Gentoo env.d file, extract a var from it
789
790 Args:
791 envd: The env.d file to load (may be a glob path)
792 var: The var to extract
Mike Frysinger1a736a82013-12-12 01:50:59 -0500793
Mike Frysinger35247af2012-11-16 18:58:06 -0500794 Returns:
795 The value of |var|
796 """
797 envds = glob.glob(envd)
798 assert len(envds) == 1, '%s: should have exactly 1 env.d file' % envd
799 envd = envds[0]
800 return cros_build_lib.LoadKeyValueFile(envd)[var]
801
802
803def _ProcessBinutilsConfig(target, output_dir):
804 """Do what binutils-config would have done"""
805 binpath = os.path.join('/bin', target + '-')
David James27ac4ae2012-12-03 23:16:15 -0800806 globpath = os.path.join(output_dir, 'usr', toolchain.GetHostTuple(), target,
Mike Frysinger35247af2012-11-16 18:58:06 -0500807 'binutils-bin', '*-gold')
808 srcpath = glob.glob(globpath)
809 assert len(srcpath) == 1, '%s: did not match 1 path' % globpath
810 srcpath = srcpath[0][len(output_dir):]
811 gccpath = os.path.join('/usr', 'libexec', 'gcc')
812 for prog in os.listdir(output_dir + srcpath):
813 # Skip binaries already wrapped.
814 if not prog.endswith('.real'):
815 GeneratePathWrapper(output_dir, binpath + prog,
816 os.path.join(srcpath, prog))
817 GeneratePathWrapper(output_dir, os.path.join(gccpath, prog),
818 os.path.join(srcpath, prog))
819
David James27ac4ae2012-12-03 23:16:15 -0800820 libpath = os.path.join('/usr', toolchain.GetHostTuple(), target, 'lib')
Mike Frysinger35247af2012-11-16 18:58:06 -0500821 envd = os.path.join(output_dir, 'etc', 'env.d', 'binutils', '*-gold')
822 srcpath = _EnvdGetVar(envd, 'LIBPATH')
823 os.symlink(os.path.relpath(srcpath, os.path.dirname(libpath)),
824 output_dir + libpath)
825
826
827def _ProcessGccConfig(target, output_dir):
828 """Do what gcc-config would have done"""
829 binpath = '/bin'
830 envd = os.path.join(output_dir, 'etc', 'env.d', 'gcc', '*')
831 srcpath = _EnvdGetVar(envd, 'GCC_PATH')
832 for prog in os.listdir(output_dir + srcpath):
833 # Skip binaries already wrapped.
834 if (not prog.endswith('.real') and
835 not prog.endswith('.elf') and
836 prog.startswith(target)):
837 GeneratePathWrapper(output_dir, os.path.join(binpath, prog),
838 os.path.join(srcpath, prog))
839 return srcpath
840
841
842def _ProcessSysrootWrapper(_target, output_dir, srcpath):
843 """Remove chroot-specific things from our sysroot wrapper"""
844 # Disable ccache since we know it won't work outside of chroot.
845 sysroot_wrapper = glob.glob(os.path.join(
846 output_dir + srcpath, 'sysroot_wrapper*'))[0]
847 contents = osutils.ReadFile(sysroot_wrapper).splitlines()
848 for num in xrange(len(contents)):
849 if '@CCACHE_DEFAULT@' in contents[num]:
850 contents[num] = 'use_ccache = False'
851 break
852 # Can't update the wrapper in place since it's a hardlink to a file in /.
853 os.unlink(sysroot_wrapper)
854 osutils.WriteFile(sysroot_wrapper, '\n'.join(contents))
Mike Frysinger60ec1012013-10-21 00:11:10 -0400855 os.chmod(sysroot_wrapper, 0o755)
Mike Frysinger35247af2012-11-16 18:58:06 -0500856
857
858def _ProcessDistroCleanups(target, output_dir):
859 """Clean up the tree and remove all distro-specific requirements
860
861 Args:
862 target: The toolchain target name
863 output_dir: The output directory to clean up
864 """
865 _ProcessBinutilsConfig(target, output_dir)
866 gcc_path = _ProcessGccConfig(target, output_dir)
867 _ProcessSysrootWrapper(target, output_dir, gcc_path)
868
869 osutils.RmDir(os.path.join(output_dir, 'etc'))
870
871
872def CreatePackagableRoot(target, output_dir, ldpaths, root='/'):
873 """Setup a tree from the packages for the specified target
874
875 This populates a path with all the files from toolchain packages so that
876 a tarball can easily be generated from the result.
877
878 Args:
879 target: The target to create a packagable root from
880 output_dir: The output directory to place all the files
881 ldpaths: A dict of static ldpath information
882 root: The root path to pull all packages/files from
883 """
884 # Find all the files owned by the packages for this target.
885 paths, elfs = _GetFilesForTarget(target, root=root)
886
887 # Link in all the package's files, any ELF dependencies, and wrap any
888 # executable ELFs with helper scripts.
889 def MoveUsrBinToBin(path):
890 """Move /usr/bin to /bin so people can just use that toplevel dir"""
891 return path[4:] if path.startswith('/usr/bin/') else path
892 _BuildInitialPackageRoot(output_dir, paths, elfs, ldpaths,
893 path_rewrite_func=MoveUsrBinToBin, root=root)
894
895 # The packages, when part of the normal distro, have helper scripts
896 # that setup paths and such. Since we are making this standalone, we
897 # need to preprocess all that ourselves.
898 _ProcessDistroCleanups(target, output_dir)
899
900
901def CreatePackages(targets_wanted, output_dir, root='/'):
902 """Create redistributable cross-compiler packages for the specified targets
903
904 This creates toolchain packages that should be usable in conjunction with
905 a downloaded sysroot (created elsewhere).
906
907 Tarballs (one per target) will be created in $PWD.
908
909 Args:
Don Garrett25f309a2014-03-19 14:02:12 -0700910 targets_wanted: The targets to package up.
911 output_dir: The directory to put the packages in.
912 root: The root path to pull all packages/files from.
Mike Frysinger35247af2012-11-16 18:58:06 -0500913 """
914 osutils.SafeMakedirs(output_dir)
915 ldpaths = lddtree.LoadLdpaths(root)
916 targets = ExpandTargets(targets_wanted)
917
David James4bc13702013-03-26 08:08:04 -0700918 with osutils.TempDir() as tempdir:
Mike Frysinger35247af2012-11-16 18:58:06 -0500919 # We have to split the root generation from the compression stages. This is
920 # because we hardlink in all the files (to avoid overhead of reading/writing
921 # the copies multiple times). But tar gets angry if a file's hardlink count
922 # changes from when it starts reading a file to when it finishes.
923 with parallel.BackgroundTaskRunner(CreatePackagableRoot) as queue:
924 for target in targets:
925 output_target_dir = os.path.join(tempdir, target)
926 queue.put([target, output_target_dir, ldpaths, root])
927
928 # Build the tarball.
929 with parallel.BackgroundTaskRunner(cros_build_lib.CreateTarball) as queue:
930 for target in targets:
931 tar_file = os.path.join(output_dir, target + '.tar.xz')
932 queue.put([tar_file, os.path.join(tempdir, target)])
933
934
Brian Harring30675052012-02-29 12:18:22 -0800935def main(argv):
Zdenek Behan508dcce2011-12-05 15:39:32 +0100936 usage = """usage: %prog [options]
937
Mike Frysinger506e75f2012-12-17 14:21:13 -0500938 The script installs and updates the toolchains in your chroot."""
939 parser = commandline.OptionParser(usage)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100940 parser.add_option('-u', '--nousepkg',
941 action='store_false', dest='usepkg', default=True,
Mike Frysinger506e75f2012-12-17 14:21:13 -0500942 help='Use prebuilt packages if possible')
Zdenek Behan508dcce2011-12-05 15:39:32 +0100943 parser.add_option('-d', '--deleteold',
944 action='store_true', dest='deleteold', default=False,
Mike Frysinger506e75f2012-12-17 14:21:13 -0500945 help='Unmerge deprecated packages')
Zdenek Behan508dcce2011-12-05 15:39:32 +0100946 parser.add_option('-t', '--targets',
Mike Frysingereaebb582012-06-19 13:04:53 -0400947 dest='targets', default='sdk',
Mike Frysinger506e75f2012-12-17 14:21:13 -0500948 help='Comma separated list of tuples. '
949 'Special keyword \'host\' is allowed. Default: sdk')
Mike Frysinger7ccee992012-06-01 21:27:59 -0400950 parser.add_option('--include-boards',
951 dest='include_boards', default='',
Mike Frysinger506e75f2012-12-17 14:21:13 -0500952 help='Comma separated list of boards whose toolchains we'
953 ' will always include. Default: none')
Liam McLoughlinf54a0782012-05-17 23:36:52 +0100954 parser.add_option('--hostonly',
Zdenek Behan7e33b4e2012-03-12 17:00:56 +0100955 dest='hostonly', default=False, action='store_true',
Mike Frysinger506e75f2012-12-17 14:21:13 -0500956 help='Only setup the host toolchain. '
957 'Useful for bootstrapping chroot')
Liam McLoughlinf54a0782012-05-17 23:36:52 +0100958 parser.add_option('--show-board-cfg',
959 dest='board_cfg', default=None,
Mike Frysinger506e75f2012-12-17 14:21:13 -0500960 help='Board to list toolchain tuples for')
Mike Frysinger35247af2012-11-16 18:58:06 -0500961 parser.add_option('--create-packages',
962 action='store_true', default=False,
963 help='Build redistributable packages')
964 parser.add_option('--output-dir', default=os.getcwd(), type='path',
965 help='Output directory')
David James66a09c42012-11-05 13:31:38 -0800966 parser.add_option('--reconfig', default=False, action='store_true',
Mike Frysinger506e75f2012-12-17 14:21:13 -0500967 help='Reload crossdev config and reselect toolchains')
Zdenek Behan508dcce2011-12-05 15:39:32 +0100968
Mike Frysinger35247af2012-11-16 18:58:06 -0500969 (options, remaining_arguments) = parser.parse_args(argv)
970 if len(remaining_arguments):
971 parser.error('script does not take arguments: %s' % remaining_arguments)
Zdenek Behan508dcce2011-12-05 15:39:32 +0100972
Mike Frysinger35247af2012-11-16 18:58:06 -0500973 # Figure out what we're supposed to do and reject conflicting options.
974 if options.board_cfg and options.create_packages:
975 parser.error('conflicting options: create-packages & show-board-cfg')
Mike Frysinger984d0622012-06-01 16:08:44 -0400976
Zdenek Behan508dcce2011-12-05 15:39:32 +0100977 targets = set(options.targets.split(','))
Mike Frysinger7ccee992012-06-01 21:27:59 -0400978 boards = set(options.include_boards.split(',')) if options.include_boards \
979 else set()
Mike Frysinger35247af2012-11-16 18:58:06 -0500980
981 if options.board_cfg:
982 ShowBoardConfig(options.board_cfg)
983 elif options.create_packages:
984 cros_build_lib.AssertInsideChroot()
985 Crossdev.Load(False)
986 CreatePackages(targets, options.output_dir)
987 else:
988 cros_build_lib.AssertInsideChroot()
989 # This has to be always run as root.
990 if os.geteuid() != 0:
991 cros_build_lib.Die('this script must be run as root')
992
993 Crossdev.Load(options.reconfig)
994 UpdateToolchains(options.usepkg, options.deleteold, options.hostonly,
995 options.reconfig, targets, boards)
996 Crossdev.Save()
997
998 return 0