Deleted Added
sdiff udiff text old ( 13577:70ab75eec40b ) new ( 13706:4c1d26d1766e )
full compact
1# -*- mode:python -*-
2
3# Copyright (c) 2013, 2015-2017 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

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

1067 src_suffix='$SHOBJSUFFIX',
1068 src_builder='SharedObject',
1069 SHLINKFLAGS='$PSHLINKFLAGS',
1070 LIBS='')
1071
1072main.Append(BUILDERS = { 'PartialShared' : partial_shared_builder,
1073 'PartialStatic' : partial_static_builder })
1074
1075# builds in ext are shared across all configs in the build root.
1076ext_dir = abspath(joinpath(str(main.root), 'ext'))
1077ext_build_dirs = []
1078for root, dirs, files in os.walk(ext_dir):
1079 if 'SConscript' in files:
1080 build_dir = os.path.relpath(root, ext_dir)
1081 ext_build_dirs.append(build_dir)
1082 main.SConscript(joinpath(root, 'SConscript'),

--- 179 unchanged lines hidden ---