summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2012-12-23 16:54:59 +1100
committerChris Johns <chrisj@rtems.org>2012-12-23 16:57:16 +1100
commit5b16e44523c99ea08f8392e732e486ab45658e4a (patch)
tree0e001348bcb7617d9974d0ed8b7f1b28578eb174 /wscript
parent9556127da537437341278517767a68f59fbeb0b8 (diff)
Add a memory dump utility.
Diffstat (limited to 'wscript')
-rw-r--r--wscript7
1 files changed, 6 insertions, 1 deletions
diff --git a/wscript b/wscript
index 99e37d3..c9cefcf 100644
--- a/wscript
+++ b/wscript
@@ -111,6 +111,11 @@ def build(bld):
'rld.cpp']
#
+ # RTEMS Utilities.
+ #
+ rtems_utils = ['rtems-utils.cpp']
+
+ #
# Build the linker.
#
bld.program(target = 'rtems-ld',
@@ -139,7 +144,7 @@ def build(bld):
# Build the RAP utility.
#
bld.program(target = 'rtems-rap',
- source = ['rtems-rapper.cpp'] + rld_source,
+ source = ['rtems-rapper.cpp'] + rld_source + rtems_utils,
defines = ['HAVE_CONFIG_H=1', 'RTEMS_VERSION=' + bld.env.RTEMS_VERSION],
includes = ['.'] + bld.includes,
cflags = bld.cflags + bld.warningflags,