systemc: Fix some paths in the tlm SCons(script|struct).
The code in util/systemc was moved into a subdirectory recently. The scons support here referred to it, and needed to be updated. Change-Id: Ib457d9bdafb2bba5058e6ecf99b9d33b3072c5b3 Reviewed-on: https://gem5-review.googlesource.com/c/13955 Reviewed-by: Jason Lowe-Power <jason@lowepower.com> Maintainer: Jason Lowe-Power <jason@lowepower.com>
This commit is contained in:
@@ -51,7 +51,7 @@ shlibsuffix = env['SHLIBSUFFIX']
|
||||
|
||||
# add include dirs
|
||||
env.Append(CPPPATH=[gem5_root + '/build/' + gem5_arch,
|
||||
gem5_root + '/util/systemc',
|
||||
gem5_root + '/util/systemc/gem5_within_systemc',
|
||||
gem5_root + '/ext/systemc/src',
|
||||
'#src',
|
||||
'#examples/common',
|
||||
|
||||
@@ -38,11 +38,13 @@ env = env.Clone()
|
||||
|
||||
gem5_root = env['GEM5_ROOT']
|
||||
|
||||
systemc_util_dir = gem5_root + '/util/systemc/gem5_within_systemc'
|
||||
|
||||
systemc_src = []
|
||||
systemc_src += Install('.', gem5_root + '/util/systemc/sc_gem5_control.cc'),
|
||||
systemc_src += Install('.', gem5_root + '/util/systemc/sc_logger.cc'),
|
||||
systemc_src += Install('.', gem5_root + '/util/systemc/sc_module.cc'),
|
||||
systemc_src += Install('.', gem5_root + '/util/systemc/stats.cc'),
|
||||
systemc_src += Install('.', systemc_util_dir + '/sc_gem5_control.cc'),
|
||||
systemc_src += Install('.', systemc_util_dir + '/sc_logger.cc'),
|
||||
systemc_src += Install('.', systemc_util_dir + '/sc_module.cc'),
|
||||
systemc_src += Install('.', systemc_util_dir + '/stats.cc'),
|
||||
|
||||
tlm_src = []
|
||||
tlm_src += [File('master_transactor.cc')]
|
||||
|
||||
Reference in New Issue
Block a user