summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2016-02-19 14:46:15 +1100
committerChris Johns <chrisj@rtems.org>2016-02-19 14:50:44 +1100
commitd17dd54d717e10fa7b789cfdc58e31fbe62d7819 (patch)
tree23438171fe725fbb1ca14dcd3edbba4b65bb52ec /tools
parentDisable installing PYO and PYC. Fix install paths. (diff)
downloadrtems-tools-d17dd54d717e10fa7b789cfdc58e31fbe62d7819.tar.bz2
Add Windows specific waf support for MSYS2.
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.
Diffstat (limited to 'tools')
-rw-r--r--tools/gdb/python/wscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/gdb/python/wscript b/tools/gdb/python/wscript
index 2de9ace..b927238 100644
--- a/tools/gdb/python/wscript
+++ b/tools/gdb/python/wscript
@@ -2,6 +2,9 @@
# Install the RTEMS gdb python
#
+def init(ctx):
+ pass
+
def options(opt):
opt.load('python')