scons: add helpers to access GDB XML description files

Change-Id: Ic3b18887544b7710ed07a86d28dc62d8441b3476
Reviewed-on: https://gem5-review.googlesource.com/c/15255
Reviewed-by: Gabe Black <gabeblack@google.com>
Reviewed-by: Andreas Sandberg <andreas.sandberg@arm.com>
Maintainer: Gabe Black <gabeblack@google.com>
This commit is contained in:
Ciro Santilli
2018-12-21 14:22:30 +00:00
parent f2bda876f7
commit 9712a635a4
2 changed files with 7 additions and 0 deletions

View File

@@ -1082,6 +1082,9 @@ for root, dirs, files in os.walk(ext_dir):
main.SConscript(joinpath(root, 'SConscript'),
variant_dir=joinpath(build_root, build_dir))
gdb_xml_dir = joinpath(ext_dir, 'gdb-xml')
Export('gdb_xml_dir')
main.Prepend(CPPPATH=Dir('ext/pybind11/include/'))
###################################################

4
src/SConscript Executable file → Normal file
View File

@@ -293,6 +293,9 @@ def Blob(blob_path, symbol):
MakeAction(embedBlob, Transform("EMBED BLOB")))
Source(cpp_path)
def GdbXml(xml_id, symbol):
Blob(joinpath(gdb_xml_dir, xml_id), symbol)
class Source(SourceFile):
ungrouped_tag = 'No link group'
source_groups = set()
@@ -522,6 +525,7 @@ class Gem5(Executable):
# Children should have access
Export('Blob')
Export('GdbXml')
Export('Source')
Export('PySource')
Export('SimObject')