SConscript (8747:017e5bbbb4e2) | SConscript (8760:df5f2151161d) |
---|---|
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 --- 28 unchanged lines hidden (view full) --- 37 Source('interrupts.cc') 38 Source('isa.cc') 39 Source('nativetrace.cc') 40 Source('pagetable.cc') 41 Source('remote_gdb.cc') 42 Source('tlb.cc') 43 Source('ua2005.cc') 44 Source('utility.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 --- 28 unchanged lines hidden (view full) --- 37 Source('interrupts.cc') 38 Source('isa.cc') 39 Source('nativetrace.cc') 40 Source('pagetable.cc') 41 Source('remote_gdb.cc') 42 Source('tlb.cc') 43 Source('ua2005.cc') 44 Source('utility.cc') |
45 Source('vtophys.cc') |
|
45 46 SimObject('SparcInterrupts.py') 47 SimObject('SparcNativeTrace.py') 48 SimObject('SparcTLB.py') 49 50 DebugFlag('Sparc', "Generic SPARC ISA stuff") 51 DebugFlag('RegisterWindows', "Register window manipulation") 52 53 if env['FULL_SYSTEM']: 54 SimObject('SparcSystem.py') 55 56 Source('system.cc') | 46 47 SimObject('SparcInterrupts.py') 48 SimObject('SparcNativeTrace.py') 49 SimObject('SparcTLB.py') 50 51 DebugFlag('Sparc', "Generic SPARC ISA stuff") 52 DebugFlag('RegisterWindows', "Register window manipulation") 53 54 if env['FULL_SYSTEM']: 55 SimObject('SparcSystem.py') 56 57 Source('system.cc') |
57 Source('vtophys.cc') | |
58 else: 59 Source('process.cc') 60 61 Source('linux/linux.cc') 62 Source('linux/process.cc') 63 Source('linux/syscalls.cc') 64 65 Source('solaris/process.cc') 66 Source('solaris/solaris.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) | 58 else: 59 Source('process.cc') 60 61 Source('linux/linux.cc') 62 Source('linux/process.cc') 63 Source('linux/syscalls.cc') 64 65 Source('solaris/process.cc') 66 Source('solaris/solaris.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) |