From b7d48ef5a4a09010305a5981f64005161a34409d Mon Sep 17 00:00:00 2001 From: Chris Johns Date: Sun, 8 Feb 2015 17:12:04 +1100 Subject: 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. --- tools/gdb/python/wscript | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'tools') 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') -- cgit v1.2.3