Deleted Added
sdiff udiff text old ( 10671:d59e40b074c6 ) new ( 10710:9b71309d29f9 )
full compact
1# -*- mode:python -*-
2
3# Copyright (c) 2013 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

--- 770 unchanged lines hidden (view full) ---

779 ' If you encounter build problems, please update ' + \
780 'swig to 3.0 or later.' + \
781 termcap.Normal
782
783# Set up SWIG flags & scanner
784swig_flags=Split('-c++ -python -modern -templatereduce $_CPPINCFLAGS')
785main.Append(SWIGFLAGS=swig_flags)
786
787# Check for 'timeout' from GNU coreutils. If present, regressions
788# will be run with a time limit.
789TIMEOUT_version = readCommand(['timeout', '--version'], exception=False)
790main['TIMEOUT'] = TIMEOUT_version and TIMEOUT_version.find('timeout') == 0
791
792# filter out all existing swig scanners, they mess up the dependency
793# stuff for some reason
794scanners = []
795for scanner in main['SCANNERS']:
796 skeys = scanner.skeys
797 if skeys == '.i':
798 continue

--- 613 unchanged lines hidden ---