summaryrefslogtreecommitdiff
path: root/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'wscript')
-rw-r--r--wscript13
1 files changed, 13 insertions, 0 deletions
diff --git a/wscript b/wscript
index 6b3b70d..a7cfb96 100644
--- a/wscript
+++ b/wscript
@@ -128,6 +128,19 @@ def build(bld):
use = modules)
#
+ # Build the ra linker.
+ #
+ bld.program(target = 'rtems-ra',
+ source = ['rtems-ra.cpp',
+ 'pkgconfig.cpp'] + rld_source,
+ defines = ['HAVE_CONFIG_H=1', 'RTEMS_VERSION=' + bld.env.RTEMS_VERSION],
+ includes = ['.'] + bld.includes,
+ cflags = bld.cflags + bld.warningflags,
+ cxxflags = bld.cxxflags + bld.warningflags,
+ linkflags = bld.linkflags,
+ use = modules)
+
+ #
# Build the symbols.
#
bld.program(target = 'rtems-syms',