SConscript (8777:dd43f1c9fa0a) | SConscript (8780:89e0822462a1) |
---|---|
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 --- 20 unchanged lines hidden (view full) --- 29# Authors: Gabe Black 30# Steve Reinhardt 31 32Import('*') 33 34if env['TARGET_ISA'] == 'alpha': 35 Source('ev5.cc') 36 Source('faults.cc') | 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 --- 20 unchanged lines hidden (view full) --- 29# Authors: Gabe Black 30# Steve Reinhardt 31 32Import('*') 33 34if env['TARGET_ISA'] == 'alpha': 35 Source('ev5.cc') 36 Source('faults.cc') |
37 Source('freebsd/system.cc') 38 Source('idle_event.cc') |
|
37 Source('interrupts.cc') 38 Source('ipr.cc') 39 Source('isa.cc') 40 Source('kernel_stats.cc') | 39 Source('interrupts.cc') 40 Source('ipr.cc') 41 Source('isa.cc') 42 Source('kernel_stats.cc') |
43 Source('linux/linux.cc') 44 Source('linux/process.cc') 45 Source('linux/system.cc') |
|
41 Source('osfpal.cc') 42 Source('pagetable.cc') | 46 Source('osfpal.cc') 47 Source('pagetable.cc') |
48 Source('process.cc') |
|
43 Source('regredir.cc') 44 Source('remote_gdb.cc') 45 Source('stacktrace.cc') | 49 Source('regredir.cc') 50 Source('remote_gdb.cc') 51 Source('stacktrace.cc') |
52 Source('system.cc') |
|
46 Source('tlb.cc') | 53 Source('tlb.cc') |
54 Source('tru64/process.cc') 55 Source('tru64/system.cc') 56 Source('tru64/tru64.cc') |
|
47 Source('utility.cc') 48 Source('vtophys.cc') 49 50 SimObject('AlphaInterrupts.py') | 57 Source('utility.cc') 58 Source('vtophys.cc') 59 60 SimObject('AlphaInterrupts.py') |
61 SimObject('AlphaSystem.py') |
|
51 SimObject('AlphaTLB.py') 52 | 62 SimObject('AlphaTLB.py') 63 |
53 if env['FULL_SYSTEM']: 54 SimObject('AlphaSystem.py') | |
55 | 64 |
56 Source('idle_event.cc') 57 Source('system.cc') 58 59 Source('freebsd/system.cc') 60 Source('linux/system.cc') 61 Source('tru64/system.cc') 62 63 else: 64 Source('process.cc') 65 66 Source('linux/linux.cc') 67 Source('linux/process.cc') 68 69 Source('tru64/tru64.cc') 70 Source('tru64/process.cc') 71 | |
72 # Add in files generated by the ISA description. 73 isa_desc_files = env.ISADesc('isa/main.isa') 74 # Only non-header files need to be compiled. 75 for f in isa_desc_files: 76 if not f.path.endswith('.hh'): 77 Source(f) | 65 # Add in files generated by the ISA description. 66 isa_desc_files = env.ISADesc('isa/main.isa') 67 # Only non-header files need to be compiled. 68 for f in isa_desc_files: 69 if not f.path.endswith('.hh'): 70 Source(f) |