Install the rtems-test command.

This installs the Python RTEMS Toolkit.

The copmiler has been switched from forcing gcc to allowing waf
to detect the host's tool chain.
This commit is contained in:
Chris Johns
2015-02-08 17:12:04 +11:00
parent 7338811607
commit b7d48ef5a4
9 changed files with 119 additions and 27 deletions

View File

@@ -3,10 +3,11 @@
#
def options(opt):
pass
opt.load('python')
def configure(conf):
conf.load('python')
conf.check_python_version((2,7,3))
def build(bld):
source = ['__init__.py',
@@ -26,5 +27,6 @@ def build(bld):
'supercore_printer.py',
'threads.py',
'watchdog.py']
bld(features = 'py', source = source, install_path = None)
bld.install_files('${PREFIX}/share/gdb/python/rtems', source)
bld(features = 'py',
source = source,
install_path = '${PREFIX}/share/gdb/python/rtems')