summaryrefslogtreecommitdiffstats
path: root/linkers
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 /linkers
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 'linkers')
-rw-r--r--linkers/wscript3
1 files changed, 3 insertions, 0 deletions
diff --git a/linkers/wscript b/linkers/wscript
index 38298d1..8fe4d1c 100644
--- a/linkers/wscript
+++ b/linkers/wscript
@@ -3,6 +3,9 @@
#
import sys
+def init(ctx):
+ pass
+
def options(opt):
opt.load('compiler_c')
opt.load('compiler_cxx')