SConscript (2666:f60aacba399c) SConscript (2686:f0d591379ac3)
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

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

23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Gabe Black
30# Steve Reinhardt
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

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

23# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Gabe Black
30# Steve Reinhardt
31# Korey Sewell
31
32import os
33import sys
34from os.path import isdir
35
36# Import build environment variable from SConstruct.
37Import('env')
38
39###################################################
40#
41# Define needed sources.
42#
43###################################################
44
45# Base sources used by all configurations.
46base_sources = Split('''
47 faults.cc
48 isa_traits.cc
32
33import os
34import sys
35from os.path import isdir
36
37# Import build environment variable from SConstruct.
38Import('env')
39
40###################################################
41#
42# Define needed sources.
43#
44###################################################
45
46# Base sources used by all configurations.
47base_sources = Split('''
48 faults.cc
49 isa_traits.cc
50 utility.cc
49 ''')
50
51# Full-system sources
52full_system_sources = Split('''
53 memory.cc
54 mips34k.cc
55 ''')
56

--- 26 unchanged lines hidden ---
51 ''')
52
53# Full-system sources
54full_system_sources = Split('''
55 memory.cc
56 mips34k.cc
57 ''')
58

--- 26 unchanged lines hidden ---