summaryrefslogtreecommitdiff
path: root/tools/gdb/python/wscript (follow)
AgeCommit message (Collapse)Author
2016-02-19Add Windows specific waf support for MSYS2.Chris Johns
Limit the compilers used to gcc and clang. Clang has not been tested. Users with MSVC install does not need to remove now. Force the os.sep path to the standard '\\' on Windows. The MSYS2 python sets it to '/' for internal project reasons. Doing this does cause waf problems when running configure so only do this for the build target. Closes #2583.
2016-02-19Disable installing PYO and PYC. Fix install paths.Chris Johns
Installing PYO and PYC does not work so disable this. Move the Python check to the top level and have a single place. Fix the install paths a revert the 'from . import' changes. This is resolved by installing into the correct paths.
2015-02-25Modified waf scripts to have a minimum python version requirement of 2.6.6, ↵Adit Sahasrabudhe
instead of 2.7.3
2015-02-08Install the rtems-test command.Chris Johns
This installs the Python RTEMS Toolkit. The copmiler has been switched from forcing gcc to allowing waf to detect the host's tool chain.
2014-09-13waf: Include waf in the souce tree and updated README on building.Chris Johns
Add support to build all parts of The RTEMS Tools project.
2014-08-26gdb-python: Update so 'rtems task' lists the classic tasks.Chris Johns
This is a first pass at cleaning up the support. To use: $ waf configure --prefix=$HOME/development/rtems/4.11 $ waf build install Start GDB and break at Init: (gdb) py import rtems (gdb) rtems task will list the classic API tasks.
2014-08-25gdb-python: Add waf script to install under a prefix.Chris Johns