Deleted Added
sdiff udiff text old ( 6333:9425c8a86e5c ) new ( 6397:cb1d7c957f49 )
full compact
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

--- 25 unchanged lines hidden (view full) ---

34# Workaround for bug in SCons version > 0.97d20071212
35# Scons bug id: 2006 M5 Bug id: 308
36 Dir('isa/formats')
37 Source('faults.cc')
38 Source('insts/branch.cc')
39 Source('insts/mem.cc')
40 Source('insts/pred_inst.cc')
41 Source('insts/static_inst.cc')
42 Source('pagetable.cc')
43 Source('tlb.cc')
44 Source('vtophys.cc')
45
46 SimObject('ArmTLB.py')
47 TraceFlag('Arm')
48
49 if env['FULL_SYSTEM']:
50 #Insert Full-System Files Here
51 pass
52 else:
53 Source('process.cc')
54 Source('linux/linux.cc')
55 Source('linux/process.cc')
56
57 # Add in files generated by the ISA description.
58 isa_desc_files = env.ISADesc('isa/main.isa')
59 # Only non-header files need to be compiled.
60 for f in isa_desc_files:
61 if not f.path.endswith('.hh'):
62 Source(f)
63