SConscript (7425:32467dcb887f) SConscript (7585:afbc40280b56)
1# -*- mode:python -*-
2
3# Copyright (c) 2009 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

68 TraceFlag('Arm')
69 TraceFlag('TLBVerbose')
70 TraceFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
71 TraceFlag('Predecoder', "Instructions returned by the predecoder")
72 if env['FULL_SYSTEM']:
73 Source('interrupts.cc')
74 Source('stacktrace.cc')
75 Source('system.cc')
1# -*- mode:python -*-
2
3# Copyright (c) 2009 ARM Limited
4# All rights reserved.
5#
6# The license below extends only to copyright in the software and shall
7# not be construed as granting a license to any other intellectual
8# property including but not limited to intellectual property relating

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

68 TraceFlag('Arm')
69 TraceFlag('TLBVerbose')
70 TraceFlag('Faults', "Trace Exceptions, interrupts, svc/swi")
71 TraceFlag('Predecoder', "Instructions returned by the predecoder")
72 if env['FULL_SYSTEM']:
73 Source('interrupts.cc')
74 Source('stacktrace.cc')
75 Source('system.cc')
76 Source('linux/system.cc')
76 Source('table_walker.cc')
77
78 SimObject('ArmInterrupts.py')
79 SimObject('ArmSystem.py')
80 else:
81 Source('process.cc')
82 Source('linux/linux.cc')
83 Source('linux/process.cc')
84
85 # Add in files generated by the ISA description.
86 isa_desc_files = env.ISADesc('isa/main.isa')
87 # Only non-header files need to be compiled.
88 for f in isa_desc_files:
89 if not f.path.endswith('.hh'):
90 Source(f)
91
77 Source('table_walker.cc')
78
79 SimObject('ArmInterrupts.py')
80 SimObject('ArmSystem.py')
81 else:
82 Source('process.cc')
83 Source('linux/linux.cc')
84 Source('linux/process.cc')
85
86 # Add in files generated by the ISA description.
87 isa_desc_files = env.ISADesc('isa/main.isa')
88 # Only non-header files need to be compiled.
89 for f in isa_desc_files:
90 if not f.path.endswith('.hh'):
91 Source(f)
92