SConscript (6397:cb1d7c957f49) | SConscript (6735:6437ad24a8a0) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2007-2008 The Florida State University 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 --- 34 unchanged lines hidden (view full) --- 43 Source('pagetable.cc') 44 Source('tlb.cc') 45 Source('vtophys.cc') 46 47 SimObject('ArmNativeTrace.py') 48 SimObject('ArmTLB.py') 49 50 TraceFlag('Arm') | 1# -*- mode:python -*- 2 3# Copyright (c) 2007-2008 The Florida State University 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 --- 34 unchanged lines hidden (view full) --- 43 Source('pagetable.cc') 44 Source('tlb.cc') 45 Source('vtophys.cc') 46 47 SimObject('ArmNativeTrace.py') 48 SimObject('ArmTLB.py') 49 50 TraceFlag('Arm') |
51 | 51 TraceFlag('Faults', "Trace Exceptions, interrupts, svc/swi") |
52 if env['FULL_SYSTEM']: 53 #Insert Full-System Files Here 54 pass 55 else: 56 Source('process.cc') 57 Source('linux/linux.cc') 58 Source('linux/process.cc') 59 60 # Add in files generated by the ISA description. 61 isa_desc_files = env.ISADesc('isa/main.isa') 62 # Only non-header files need to be compiled. 63 for f in isa_desc_files: 64 if not f.path.endswith('.hh'): 65 Source(f) 66 | 52 if env['FULL_SYSTEM']: 53 #Insert Full-System Files Here 54 pass 55 else: 56 Source('process.cc') 57 Source('linux/linux.cc') 58 Source('linux/process.cc') 59 60 # Add in files generated by the ISA description. 61 isa_desc_files = env.ISADesc('isa/main.isa') 62 # Only non-header files need to be compiled. 63 for f in isa_desc_files: 64 if not f.path.endswith('.hh'): 65 Source(f) 66 |