summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2015-02-08 17:12:04 +1100
committerChris Johns <chrisj@rtems.org>2015-02-08 17:12:04 +1100
commitb7d48ef5a4a09010305a5981f64005161a34409d (patch)
treed67a781bd460bfc367d1e038ed9f3a8d870884fd /tools
parent73388116079288523c84f4c93fe19646c34644b9 (diff)
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.
Diffstat (limited to 'tools')
-rw-r--r--tools/gdb/python/wscript8
1 files changed, 5 insertions, 3 deletions
diff --git a/tools/gdb/python/wscript b/tools/gdb/python/wscript
index 5c898c1..0cb5bb8 100644
--- a/tools/gdb/python/wscript
+++ b/tools/gdb/python/wscript
@@ -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')