mirror of
https://git.rtems.org/rtems-tools/
synced 2025-10-16 04:50:56 +08:00
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:
@@ -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')
|
||||
|
Reference in New Issue
Block a user