summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCiro Santilli <ciro.santilli@arm.com>2018-12-21 14:22:30 +0000
committerCiro Santilli <ciro.santilli@arm.com>2019-01-22 11:35:12 +0000
commit9712a635a42bdf8db40ae0f48f8d515bea1927cf (patch)
tree1e45b212f6a46f0c11f48858582c7e9430186a80
parentf2bda876f73af4ecc38406f3562a3d16fd28a5a9 (diff)
downloadgem5-9712a635a42bdf8db40ae0f48f8d515bea1927cf.tar.xz
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>
-rwxr-xr-xSConstruct3
-rw-r--r--[-rwxr-xr-x]src/SConscript4
2 files changed, 7 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 659023bf0..5c8f64956 100755
--- a/SConstruct
+++ b/SConstruct
@@ -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/'))
###################################################
diff --git a/src/SConscript b/src/SConscript
index 5f8a2d2d3..74adf3c88 100755..100644
--- a/src/SConscript
+++ b/src/SConscript
@@ -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')