SConscript (5403:92d376c98a41) | SConscript (5647:b06b49498c79) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2004-2006 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 --- 37 unchanged lines hidden (view full) --- 46 Source('utility.cc') 47 Source('dsp.cc') 48 49 SimObject('MipsTLB.py') 50 TraceFlag('MipsPRA') 51 52 if env['FULL_SYSTEM']: 53 SimObject('MipsSystem.py') | 1# -*- mode:python -*- 2 3# Copyright (c) 2004-2006 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 --- 37 unchanged lines hidden (view full) --- 46 Source('utility.cc') 47 Source('dsp.cc') 48 49 SimObject('MipsTLB.py') 50 TraceFlag('MipsPRA') 51 52 if env['FULL_SYSTEM']: 53 SimObject('MipsSystem.py') |
54 SimObject('MipsInterrupts.py') |
|
54 Source('idle_event.cc') 55 Source('mips_core_specific.cc') 56 Source('vtophys.cc') 57 Source('system.cc') 58 Source('stacktrace.cc') 59 Source('linux/system.cc') 60 Source('interrupts.cc') 61 Source('bare_iron/system.cc') 62 else: 63 Source('process.cc') 64 Source('linux/linux.cc') 65 Source('linux/process.cc') 66 67 # Add in files generated by the ISA description. 68 isa_desc_files = env.ISADesc('isa/main.isa') 69 # Only non-header files need to be compiled. 70 for f in isa_desc_files: 71 if not f.path.endswith('.hh'): 72 Source(f) | 55 Source('idle_event.cc') 56 Source('mips_core_specific.cc') 57 Source('vtophys.cc') 58 Source('system.cc') 59 Source('stacktrace.cc') 60 Source('linux/system.cc') 61 Source('interrupts.cc') 62 Source('bare_iron/system.cc') 63 else: 64 Source('process.cc') 65 Source('linux/linux.cc') 66 Source('linux/process.cc') 67 68 # Add in files generated by the ISA description. 69 isa_desc_files = env.ISADesc('isa/main.isa') 70 # Only non-header files need to be compiled. 71 for f in isa_desc_files: 72 if not f.path.endswith('.hh'): 73 Source(f) |