SConscript (6691:cd68b6ecd68d) | SConscript (7506:e76cc0ca16cc) |
---|---|
1# -*- mode:python -*- 2 3# Copyright (c) 2009 The University of Edinburgh 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('insts/branch.cc') 38 Source('insts/mem.cc') 39 Source('insts/integer.cc') 40 Source('insts/floating.cc') 41 Source('insts/condition.cc') 42 Source('insts/static_inst.cc') 43 Source('pagetable.cc') 44 Source('tlb.cc') | 1# -*- mode:python -*- 2 3# Copyright (c) 2009 The University of Edinburgh 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('insts/branch.cc') 38 Source('insts/mem.cc') 39 Source('insts/integer.cc') 40 Source('insts/floating.cc') 41 Source('insts/condition.cc') 42 Source('insts/static_inst.cc') 43 Source('pagetable.cc') 44 Source('tlb.cc') |
45 Source('utility.cc') |
|
45 46 SimObject('PowerTLB.py') 47 TraceFlag('Power') 48 49 if not env['FULL_SYSTEM']: 50 Source('process.cc') 51 Source('linux/linux.cc') 52 Source('linux/process.cc') 53 54 # Add in files generated by the ISA description. 55 isa_desc_files = env.ISADesc('isa/main.isa') 56 57 # Only non-header files need to be compiled. 58 for f in isa_desc_files: 59 if not f.path.endswith('.hh'): 60 Source(f) 61 | 46 47 SimObject('PowerTLB.py') 48 TraceFlag('Power') 49 50 if not env['FULL_SYSTEM']: 51 Source('process.cc') 52 Source('linux/linux.cc') 53 Source('linux/process.cc') 54 55 # Add in files generated by the ISA description. 56 isa_desc_files = env.ISADesc('isa/main.isa') 57 58 # Only non-header files need to be compiled. 59 for f in isa_desc_files: 60 if not f.path.endswith('.hh'): 61 Source(f) 62 |