scons: Add sim_object and enums arguments to SimObject().
This will explicitly declare what SimObject and Enum types need to be set up in C++, which will make importing all the SimObject modules during the setup phase of SCons uneccessary. Change-Id: Id2d7603daf33b236ceaa0789e2f089f589d34e62 Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/49406 Reviewed-by: Gabe Black <gabe.black@gmail.com> Maintainer: Gabe Black <gabe.black@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
@@ -39,12 +39,12 @@ if not env['BUILD_GPU']:
|
||||
if env['PROTOCOL'] == 'None':
|
||||
Return()
|
||||
|
||||
SimObject('ProtocolTester.py')
|
||||
SimObject('CpuThread.py')
|
||||
SimObject('DmaThread.py')
|
||||
SimObject('GpuWavefront.py')
|
||||
SimObject('TesterThread.py')
|
||||
SimObject('TesterDma.py')
|
||||
SimObject('ProtocolTester.py', sim_objects=['ProtocolTester'])
|
||||
SimObject('CpuThread.py', sim_objects=['CpuThread'])
|
||||
SimObject('DmaThread.py', sim_objects=['DmaThread'])
|
||||
SimObject('GpuWavefront.py', sim_objects=['GpuWavefront'])
|
||||
SimObject('TesterThread.py', sim_objects=['TesterThread'])
|
||||
SimObject('TesterDma.py', sim_objects=['TesterDma'])
|
||||
|
||||
Source('address_manager.cc')
|
||||
Source('episode.cc')
|
||||
|
||||
Reference in New Issue
Block a user