SConscript (7506:e76cc0ca16cc) | SConscript (8335:9228e00459d4) |
---|---|
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 --- 31 unchanged lines hidden (view full) --- 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') 46 47 SimObject('PowerTLB.py') | 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 --- 31 unchanged lines hidden (view full) --- 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') 46 47 SimObject('PowerTLB.py') |
48 TraceFlag('Power') | 48 DebugFlag('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 | 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 |