2013-04-03 11:07:16 +00:00
|
|
|
# Copyright (c) 2012 The Chromium OS Authors.
|
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2013-04-03 11:07:16 +00:00
|
|
|
#
|
|
|
|
|
2013-09-23 23:35:17 +00:00
|
|
|
import re
|
2013-04-03 11:07:16 +00:00
|
|
|
import glob
|
|
|
|
import os
|
|
|
|
|
|
|
|
import bsettings
|
|
|
|
import command
|
|
|
|
|
|
|
|
class Toolchain:
|
|
|
|
"""A single toolchain
|
|
|
|
|
|
|
|
Public members:
|
|
|
|
gcc: Full path to C compiler
|
|
|
|
path: Directory path containing C compiler
|
|
|
|
cross: Cross compile string, e.g. 'arm-linux-'
|
|
|
|
arch: Architecture of toolchain as determined from the first
|
|
|
|
component of the filename. E.g. arm-linux-gcc becomes arm
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, fname, test, verbose=False):
|
|
|
|
"""Create a new toolchain object.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
fname: Filename of the gcc component
|
|
|
|
test: True to run the toolchain to test it
|
|
|
|
"""
|
|
|
|
self.gcc = fname
|
|
|
|
self.path = os.path.dirname(fname)
|
2014-12-02 00:33:58 +00:00
|
|
|
|
|
|
|
# Find the CROSS_COMPILE prefix to use for U-Boot. For example,
|
|
|
|
# 'arm-linux-gnueabihf-gcc' turns into 'arm-linux-gnueabihf-'.
|
|
|
|
basename = os.path.basename(fname)
|
|
|
|
pos = basename.rfind('-')
|
|
|
|
self.cross = basename[:pos + 1] if pos != -1 else ''
|
|
|
|
|
|
|
|
# The architecture is the first part of the name
|
2013-04-03 11:07:16 +00:00
|
|
|
pos = self.cross.find('-')
|
|
|
|
self.arch = self.cross[:pos] if pos != -1 else 'sandbox'
|
|
|
|
|
2014-12-02 00:34:00 +00:00
|
|
|
env = self.MakeEnvironment(False)
|
2013-04-03 11:07:16 +00:00
|
|
|
|
|
|
|
# As a basic sanity check, run the C compiler with --version
|
|
|
|
cmd = [fname, '--version']
|
|
|
|
if test:
|
2013-10-09 20:28:09 +00:00
|
|
|
result = command.RunPipe([cmd], capture=True, env=env,
|
|
|
|
raise_on_error=False)
|
2013-04-03 11:07:16 +00:00
|
|
|
self.ok = result.return_code == 0
|
|
|
|
if verbose:
|
|
|
|
print 'Tool chain test: ',
|
|
|
|
if self.ok:
|
|
|
|
print 'OK'
|
|
|
|
else:
|
|
|
|
print 'BAD'
|
|
|
|
print 'Command: ', cmd
|
|
|
|
print result.stdout
|
|
|
|
print result.stderr
|
|
|
|
else:
|
|
|
|
self.ok = True
|
|
|
|
self.priority = self.GetPriority(fname)
|
|
|
|
|
|
|
|
def GetPriority(self, fname):
|
|
|
|
"""Return the priority of the toolchain.
|
|
|
|
|
|
|
|
Toolchains are ranked according to their suitability by their
|
|
|
|
filename prefix.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
fname: Filename of toolchain
|
|
|
|
Returns:
|
|
|
|
Priority of toolchain, 0=highest, 20=lowest.
|
|
|
|
"""
|
2014-07-07 00:47:45 +00:00
|
|
|
priority_list = ['-elf', '-unknown-linux-gnu', '-linux',
|
2013-04-03 11:07:16 +00:00
|
|
|
'-none-linux-gnueabi', '-uclinux', '-none-eabi',
|
|
|
|
'-gentoo-linux-gnu', '-linux-gnueabi', '-le-linux', '-uclinux']
|
|
|
|
for prio in range(len(priority_list)):
|
|
|
|
if priority_list[prio] in fname:
|
|
|
|
return prio
|
|
|
|
return prio
|
|
|
|
|
2014-12-02 00:34:00 +00:00
|
|
|
def MakeEnvironment(self, full_path):
|
2013-04-03 11:07:16 +00:00
|
|
|
"""Returns an environment for using the toolchain.
|
|
|
|
|
2014-12-02 00:34:00 +00:00
|
|
|
Thie takes the current environment and adds CROSS_COMPILE so that
|
|
|
|
the tool chain will operate correctly.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
full_path: Return the full path in CROSS_COMPILE and don't set
|
|
|
|
PATH
|
2013-04-03 11:07:16 +00:00
|
|
|
"""
|
|
|
|
env = dict(os.environ)
|
2014-12-02 00:34:00 +00:00
|
|
|
if full_path:
|
|
|
|
env['CROSS_COMPILE'] = os.path.join(self.path, self.cross)
|
|
|
|
else:
|
|
|
|
env['CROSS_COMPILE'] = self.cross
|
|
|
|
env['PATH'] = self.path + ':' + env['PATH']
|
|
|
|
|
2013-04-03 11:07:16 +00:00
|
|
|
return env
|
|
|
|
|
|
|
|
|
|
|
|
class Toolchains:
|
|
|
|
"""Manage a list of toolchains for building U-Boot
|
|
|
|
|
|
|
|
We select one toolchain for each architecture type
|
|
|
|
|
|
|
|
Public members:
|
|
|
|
toolchains: Dict of Toolchain objects, keyed by architecture name
|
|
|
|
paths: List of paths to check for toolchains (may contain wildcards)
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.toolchains = {}
|
|
|
|
self.paths = []
|
2014-09-06 01:00:13 +00:00
|
|
|
self._make_flags = dict(bsettings.GetItems('make-flags'))
|
|
|
|
|
|
|
|
def GetSettings(self):
|
2013-09-23 23:35:17 +00:00
|
|
|
toolchains = bsettings.GetItems('toolchain')
|
|
|
|
if not toolchains:
|
|
|
|
print ("Warning: No tool chains - please add a [toolchain] section"
|
|
|
|
" to your buildman config file %s. See README for details" %
|
2014-07-07 00:46:36 +00:00
|
|
|
bsettings.config_fname)
|
2013-09-23 23:35:17 +00:00
|
|
|
|
|
|
|
for name, value in toolchains:
|
2013-04-03 11:07:16 +00:00
|
|
|
if '*' in value:
|
|
|
|
self.paths += glob.glob(value)
|
|
|
|
else:
|
|
|
|
self.paths.append(value)
|
|
|
|
|
|
|
|
def Add(self, fname, test=True, verbose=False):
|
|
|
|
"""Add a toolchain to our list
|
|
|
|
|
|
|
|
We select the given toolchain as our preferred one for its
|
|
|
|
architecture if it is a higher priority than the others.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
fname: Filename of toolchain's gcc driver
|
|
|
|
test: True to run the toolchain to test it
|
|
|
|
"""
|
|
|
|
toolchain = Toolchain(fname, test, verbose)
|
|
|
|
add_it = toolchain.ok
|
|
|
|
if toolchain.arch in self.toolchains:
|
|
|
|
add_it = (toolchain.priority <
|
|
|
|
self.toolchains[toolchain.arch].priority)
|
|
|
|
if add_it:
|
|
|
|
self.toolchains[toolchain.arch] = toolchain
|
|
|
|
|
|
|
|
def Scan(self, verbose):
|
|
|
|
"""Scan for available toolchains and select the best for each arch.
|
|
|
|
|
|
|
|
We look for all the toolchains we can file, figure out the
|
|
|
|
architecture for each, and whether it works. Then we select the
|
|
|
|
highest priority toolchain for each arch.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
verbose: True to print out progress information
|
|
|
|
"""
|
|
|
|
if verbose: print 'Scanning for tool chains'
|
|
|
|
for path in self.paths:
|
|
|
|
if verbose: print " - scanning path '%s'" % path
|
|
|
|
for subdir in ['.', 'bin', 'usr/bin']:
|
|
|
|
dirname = os.path.join(path, subdir)
|
|
|
|
if verbose: print " - looking in '%s'" % dirname
|
|
|
|
for fname in glob.glob(dirname + '/*gcc'):
|
|
|
|
if verbose: print " - found '%s'" % fname
|
|
|
|
self.Add(fname, True, verbose)
|
|
|
|
|
|
|
|
def List(self):
|
|
|
|
"""List out the selected toolchains for each architecture"""
|
|
|
|
print 'List of available toolchains (%d):' % len(self.toolchains)
|
|
|
|
if len(self.toolchains):
|
|
|
|
for key, value in sorted(self.toolchains.iteritems()):
|
|
|
|
print '%-10s: %s' % (key, value.gcc)
|
|
|
|
else:
|
|
|
|
print 'None'
|
|
|
|
|
|
|
|
def Select(self, arch):
|
|
|
|
"""Returns the toolchain for a given architecture
|
|
|
|
|
|
|
|
Args:
|
|
|
|
args: Name of architecture (e.g. 'arm', 'ppc_8xx')
|
|
|
|
|
|
|
|
returns:
|
|
|
|
toolchain object, or None if none found
|
|
|
|
"""
|
|
|
|
for name, value in bsettings.GetItems('toolchain-alias'):
|
|
|
|
if arch == name:
|
|
|
|
arch = value
|
|
|
|
|
|
|
|
if not arch in self.toolchains:
|
|
|
|
raise ValueError, ("No tool chain found for arch '%s'" % arch)
|
|
|
|
return self.toolchains[arch]
|
2013-09-23 23:35:17 +00:00
|
|
|
|
|
|
|
def ResolveReferences(self, var_dict, args):
|
|
|
|
"""Resolve variable references in a string
|
|
|
|
|
|
|
|
This converts ${blah} within the string to the value of blah.
|
|
|
|
This function works recursively.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
var_dict: Dictionary containing variables and their values
|
|
|
|
args: String containing make arguments
|
|
|
|
Returns:
|
|
|
|
Resolved string
|
|
|
|
|
|
|
|
>>> bsettings.Setup()
|
|
|
|
>>> tcs = Toolchains()
|
|
|
|
>>> tcs.Add('fred', False)
|
|
|
|
>>> var_dict = {'oblique' : 'OBLIQUE', 'first' : 'fi${second}rst', \
|
|
|
|
'second' : '2nd'}
|
|
|
|
>>> tcs.ResolveReferences(var_dict, 'this=${oblique}_set')
|
|
|
|
'this=OBLIQUE_set'
|
|
|
|
>>> tcs.ResolveReferences(var_dict, 'this=${oblique}_set${first}nd')
|
|
|
|
'this=OBLIQUE_setfi2ndrstnd'
|
|
|
|
"""
|
2014-08-28 15:43:40 +00:00
|
|
|
re_var = re.compile('(\$\{[-_a-z0-9A-Z]{1,}\})')
|
2013-09-23 23:35:17 +00:00
|
|
|
|
|
|
|
while True:
|
|
|
|
m = re_var.search(args)
|
|
|
|
if not m:
|
|
|
|
break
|
|
|
|
lookup = m.group(0)[2:-1]
|
|
|
|
value = var_dict.get(lookup, '')
|
|
|
|
args = args[:m.start(0)] + value + args[m.end(0):]
|
|
|
|
return args
|
|
|
|
|
|
|
|
def GetMakeArguments(self, board):
|
|
|
|
"""Returns 'make' arguments for a given board
|
|
|
|
|
|
|
|
The flags are in a section called 'make-flags'. Flags are named
|
|
|
|
after the target they represent, for example snapper9260=TESTING=1
|
|
|
|
will pass TESTING=1 to make when building the snapper9260 board.
|
|
|
|
|
|
|
|
References to other boards can be added in the string also. For
|
|
|
|
example:
|
|
|
|
|
|
|
|
[make-flags]
|
|
|
|
at91-boards=ENABLE_AT91_TEST=1
|
|
|
|
snapper9260=${at91-boards} BUILD_TAG=442
|
|
|
|
snapper9g45=${at91-boards} BUILD_TAG=443
|
|
|
|
|
|
|
|
This will return 'ENABLE_AT91_TEST=1 BUILD_TAG=442' for snapper9260
|
|
|
|
and 'ENABLE_AT91_TEST=1 BUILD_TAG=443' for snapper9g45.
|
|
|
|
|
|
|
|
A special 'target' variable is set to the board target.
|
|
|
|
|
|
|
|
Args:
|
|
|
|
board: Board object for the board to check.
|
|
|
|
Returns:
|
|
|
|
'make' flags for that board, or '' if none
|
|
|
|
"""
|
|
|
|
self._make_flags['target'] = board.target
|
|
|
|
arg_str = self.ResolveReferences(self._make_flags,
|
|
|
|
self._make_flags.get(board.target, ''))
|
|
|
|
args = arg_str.split(' ')
|
|
|
|
i = 0
|
|
|
|
while i < len(args):
|
|
|
|
if not args[i]:
|
|
|
|
del args[i]
|
|
|
|
else:
|
|
|
|
i += 1
|
|
|
|
return args
|