SConscript (6333:9425c8a86e5c) SConscript (6397:cb1d7c957f49)
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')
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('nativetrace.cc')
42 Source('pagetable.cc')
43 Source('tlb.cc')
44 Source('vtophys.cc')
45
43 Source('pagetable.cc')
44 Source('tlb.cc')
45 Source('vtophys.cc')
46
47 SimObject('ArmNativeTrace.py')
46 SimObject('ArmTLB.py')
48 SimObject('ArmTLB.py')
49
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
50 TraceFlag('Arm')
51
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