Deleted Added
sdiff udiff text old ( 3494:5ee078c93ec8 ) new ( 3546:c4074658f1e1 )
full compact
1# -*- mode:python -*-
2
3# Copyright (c) 2004-2005 The Regents of The University of Michigan
4# All rights reserved.
5#
6# Redistribution and use in source and binary forms, with or without
7# modification, are permitted provided that the following conditions are
8# met: redistributions of source code must retain the above copyright

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

456
457# libelf build is shared across all configs in the build root.
458env.SConscript('ext/libelf/SConscript',
459 build_dir = os.path.join(build_root, 'libelf'),
460 exports = 'env')
461
462###################################################
463#
464# Define build environments for selected configurations.
465#
466###################################################
467
468# rename base env
469base_env = env
470
471for build_path in build_paths:

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

561 # Set up the regression tests for each build.
562 for e in envList:
563 SConscript('tests/SConscript',
564 build_dir = os.path.join(build_path, 'tests', e.Label),
565 exports = { 'env' : e }, duplicate = False)
566
567Help(help_text)
568
569###################################################
570#
571# Let SCons do its thing. At this point SCons will use the defined
572# build environments to build the requested targets.
573#
574###################################################
575