SConscript (4826:259b996a6da6) SConscript (4997:e7380529bd2d)
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

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

27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Gabe Black
30# Steve Reinhardt
31
32Import('*')
33
34if env['TARGET_ISA'] == 'alpha':
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

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

27# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28#
29# Authors: Gabe Black
30# Steve Reinhardt
31
32Import('*')
33
34if env['TARGET_ISA'] == 'alpha':
35 Source('ev5.cc')
35 Source('faults.cc')
36 Source('floatregfile.cc')
37 Source('intregfile.cc')
36 Source('faults.cc')
37 Source('floatregfile.cc')
38 Source('intregfile.cc')
39 Source('ipr.cc')
38 Source('miscregfile.cc')
40 Source('miscregfile.cc')
41 Source('pagetable.cc')
39 Source('regfile.cc')
40 Source('remote_gdb.cc')
42 Source('regfile.cc')
43 Source('remote_gdb.cc')
44 Source('tlb.cc')
41 Source('utility.cc')
42
45 Source('utility.cc')
46
47 SimObject('AlphaTLB.py')
48
43 if env['FULL_SYSTEM']:
44 SimObject('AlphaSystem.py')
49 if env['FULL_SYSTEM']:
50 SimObject('AlphaSystem.py')
45 SimObject('AlphaTLB.py')
46
51
47 Source('ev5.cc')
48 Source('idle_event.cc')
52 Source('idle_event.cc')
49 Source('ipr.cc')
50 Source('kernel_stats.cc')
51 Source('osfpal.cc')
53 Source('kernel_stats.cc')
54 Source('osfpal.cc')
52 Source('pagetable.cc')
53 Source('stacktrace.cc')
54 Source('system.cc')
55 Source('stacktrace.cc')
56 Source('system.cc')
55 Source('tlb.cc')
56 Source('vtophys.cc')
57
58 Source('freebsd/system.cc')
59 Source('linux/system.cc')
60 Source('tru64/system.cc')
61
62 else:
63 Source('process.cc')

--- 13 unchanged lines hidden ---
57 Source('vtophys.cc')
58
59 Source('freebsd/system.cc')
60 Source('linux/system.cc')
61 Source('tru64/system.cc')
62
63 else:
64 Source('process.cc')

--- 13 unchanged lines hidden ---