summaryrefslogtreecommitdiff
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:51:28 +1100
commit7148caeb916b8f9bde0bbce86a32f5daf6a1e6ad (patch)
treed7d9053f14437136550acc01406e654632c42507 /tools
parentde1beea245bd18cb9eadfb7dbaea6572269a97cd (diff)
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 1882e1f..a421268 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')