source: rtems-tools/wscript @ 92935ed

4.105
Last change on this file since 92935ed was 3badbb0, checked in by Chris Johns <chrisj@…>, on 01/18/15 at 07:12:18

Add support to cross-compile. Use --hosti=.

On FreeBSD use --host=mingw32 for Windows. If you use another
OS you might need to add the specific windows host to the
top level wscript file.

  • Property mode set to 100644
File size: 3.3 KB
Line 
1#
2# RTEMS Tools Project (http://www.rtems.org/)
3# Copyright 2014 Chris Johns (chrisj@rtems.org)
4# All rights reserved.
5#
6# This file is part of the RTEMS Tools package in 'rtems-tools'.
7#
8# Redistribution and use in source and binary forms, with or without
9# modification, are permitted provided that the following conditions are met:
10#
11# 1. Redistributions of source code must retain the above copyright notice,
12# this list of conditions and the following disclaimer.
13#
14# 2. Redistributions in binary form must reproduce the above copyright notice,
15# this list of conditions and the following disclaimer in the documentation
16# and/or other materials provided with the distribution.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGE.
29#
30
31subdirs = ['rtemstoolkit',
32           'linkers',
33           'tester',
34           'tools/gdb/python']
35
36def recurse(ctx):
37    for sd in subdirs:
38        ctx.recurse(sd)
39
40def options(ctx):
41    ctx.add_option('--rtems-version',
42                   default = '4.11',
43                   dest='rtems_version',
44                   help = 'Set the RTEMS version')
45    ctx.add_option('--c-opts',
46                   default = '-O2',
47                   dest='c_opts',
48                   help = 'Set build options, default: -O2.')
49    ctx.add_option('--host',
50                   default = 'native',
51                   dest='host',
52                   help = 'Set host to build for, default: none.')
53    recurse(ctx)
54
55def init(ctx):
56    try:
57        import waflib.Options
58        import waflib.ConfigSet
59        env = waflib.ConfigSet.ConfigSet()
60        env.load(waflib.Options.lockfile)
61        check_options(ctx, env.options['host'])
62        for sd in subdirs:
63            ctx.recurse(sd)
64    except:
65        pass
66
67def configure(ctx):
68    try:
69        ctx.load("doxygen", tooldir = 'waf-tools')
70    except:
71        pass
72    ctx.env.C_OPTS = ctx.options.c_opts.split(',')
73    ctx.env.RTEMS_VERSION = ctx.options.rtems_version
74    check_options(ctx, ctx.options.host)
75    recurse(ctx)
76
77def build(ctx):
78    recurse(ctx)
79
80def install(ctx):
81    recurse(ctx)
82
83def clean(ctx):
84    recurse(ctx)
85
86def rebuild(ctx):
87    import waflib.Options
88    waflib.Options.commands.extend(['clean', 'build'])
89
90def check_options(ctx, host):
91    if host in ['mingw32']:
92        ctx.env.HOST = host
93        ctx.env.CC = '%s-gcc' % (host)
94        ctx.env.CXX = '%s-g++' % (host)
95        ctx.env.AR = '%s-ar' % (host)
96        ctx.env.PYTHON = 'python'
97    elif host is not 'native':
98        ctx.fatal('unknown host: %s' % (host));
99
100#
101# The doxy command.
102#
103from waflib import Build
104class doxy(Build.BuildContext):
105    fun = 'build'
106    cmd = 'doxy'
Note: See TracBrowser for help on using the repository browser.