building.py 31.1 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#
# File      : building.py
# This file is part of RT-Thread RTOS
# COPYRIGHT (C) 2006 - 2015, RT-Thread Development Team
#
#  This program is free software; you can redistribute it and/or modify
#  it under the terms of the GNU General Public License as published by
#  the Free Software Foundation; either version 2 of the License, or
#  (at your option) any later version.
#
#  This program is distributed in the hope that it will be useful,
#  but WITHOUT ANY WARRANTY; without even the implied warranty of
#  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
#  GNU General Public License for more details.
#
#  You should have received a copy of the GNU General Public License along
#  with this program; if not, write to the Free Software Foundation, Inc.,
#  51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# Change Logs:
# Date           Author       Notes
# 2015-01-20     Bernard      Add copyright information
23
# 2015-07-25     Bernard      Add LOCAL_CCFLAGS/LOCAL_CPPPATH/LOCAL_CPPDEFINES for
24
#                             group definition.
25 26
#

G
goprife@gmail.com 已提交
27 28 29 30 31
import os
import sys
import string

from SCons.Script import *
32
from utils import _make_path_relative
33
from mkdist import do_copy_file
G
goprife@gmail.com 已提交
34 35 36 37 38 39

BuildOptions = {}
Projects = []
Rtt_Root = ''
Env = None

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
# SCons PreProcessor patch
def start_handling_includes(self, t=None):
    """
    Causes the PreProcessor object to start processing #import,
    #include and #include_next lines.

    This method will be called when a #if, #ifdef, #ifndef or #elif
    evaluates True, or when we reach the #else in a #if, #ifdef,
    #ifndef or #elif block where a condition already evaluated
    False.

    """
    d = self.dispatch_table
    p = self.stack[-1] if self.stack else self.default_table

    for k in ('import', 'include', 'include_next', 'define'):
        d[k] = p[k]

def stop_handling_includes(self, t=None):
    """
    Causes the PreProcessor object to stop processing #import,
    #include and #include_next lines.

    This method will be called when a #if, #ifdef, #ifndef or #elif
    evaluates False, or when we reach the #else in a #if, #ifdef,
    #ifndef or #elif block where a condition already evaluated True.
    """
    d = self.dispatch_table
    d['import'] = self.do_nothing
    d['include'] =  self.do_nothing
    d['include_next'] =  self.do_nothing
    d['define'] =  self.do_nothing
72

73 74 75 76
PatchedPreProcessor = SCons.cpp.PreProcessor
PatchedPreProcessor.start_handling_includes = start_handling_includes
PatchedPreProcessor.stop_handling_includes = stop_handling_includes

G
goprife@gmail.com 已提交
77 78
class Win32Spawn:
    def spawn(self, sh, escape, cmd, args, env):
G
Grissiom 已提交
79 80 81 82 83 84 85 86 87 88 89
        # deal with the cmd build-in commands which cannot be used in
        # subprocess.Popen
        if cmd == 'del':
            for f in args[1:]:
                try:
                    os.remove(f)
                except Exception as e:
                    print 'Error removing file: %s' % e
                    return -1
            return 0

G
goprife@gmail.com 已提交
90 91 92 93
        import subprocess

        newargs = string.join(args[1:], ' ')
        cmdline = cmd + " " + newargs
G
Grissiom 已提交
94 95

        # Make sure the env is constructed by strings
96
        _e = dict([(k, str(v)) for k, v in env.items()])
G
Grissiom 已提交
97 98 99 100 101 102

        # Windows(tm) CreateProcess does not use the env passed to it to find
        # the executables. So we have to modify our own PATH to make Popen
        # work.
        old_path = os.environ['PATH']
        os.environ['PATH'] = _e['PATH']
103

G
Grissiom 已提交
104
        try:
105
            proc = subprocess.Popen(cmdline, env=_e, shell=False)
G
Grissiom 已提交
106
        except Exception as e:
107 108 109
            print 'Error in calling:\n%s' % cmdline
            print 'Exception: %s: %s' % (e, os.strerror(e.errno))
            return e.errno
G
Grissiom 已提交
110 111
        finally:
            os.environ['PATH'] = old_path
112

G
Grissiom 已提交
113
        return proc.wait()
G
goprife@gmail.com 已提交
114

115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143
# auto fix the 'RTT_CC' and 'RTT_EXEC_PATH'
# when using 'scons --target=cc' the 'RTT_CC' will set to 'cc'
# it will fix the the 'rtconfig.EXEC_PATH' when get it failed.
# NOTE: this function will changed your env. Please backup the env before used it.
def AutoFixRttCCAndExecPath():
    import rtconfig
    target_option = None

    # get --target=cc option
    if len(sys.argv) > 1:
        option = sys.argv[1].split('=')
        if len(option) > 1 and option[0] == '--target':
            target_option = option[1]

    # force change the 'RTT_CC' when using 'scons --target=cc'
    if target_option:
        if target_option == 'mdk' or target_option == 'mdk4' or target_option == 'mdk5':
            os.environ['RTT_CC'] = 'keil'
        elif target_option == 'iar':
            os.environ['RTT_CC'] = 'iar'

    # auto change the 'RTT_EXEC_PATH' when 'rtconfig.EXEC_PATH' get failed
    reload(rtconfig)
    if not os.path.exists(rtconfig.EXEC_PATH):
        if os.environ['RTT_EXEC_PATH']:
            # del the 'RTT_EXEC_PATH' and using the 'EXEC_PATH' setting on rtconfig.py
            del os.environ['RTT_EXEC_PATH']
            reload(rtconfig)

144
def PrepareBuilding(env, root_directory, has_libcpu=False, remove_components = []):
G
goprife@gmail.com 已提交
145 146 147 148 149 150 151 152 153
    import SCons.cpp
    import rtconfig

    global BuildOptions
    global Projects
    global Env
    global Rtt_Root

    Env = env
154
    Rtt_Root = os.path.abspath(root_directory)
155 156 157 158 159
    # set RTT_ROOT in ENV
    Env['RTT_ROOT'] = Rtt_Root
    # set BSP_ROOT in ENV
    Env['BSP_ROOT'] = Dir('#').abspath

160
    sys.path = sys.path + [os.path.join(Rtt_Root, 'tools')]
G
goprife@gmail.com 已提交
161

162 163 164
    # auto fix the 'RTT_CC' and 'RTT_EXEC_PATH'
    AutoFixRttCCAndExecPath()

165 166 167 168 169
    # add compability with Keil MDK 4.6 which changes the directory of armcc.exe
    if rtconfig.PLATFORM == 'armcc':
        if not os.path.isfile(os.path.join(rtconfig.EXEC_PATH, 'armcc.exe')):
            if rtconfig.EXEC_PATH.find('bin40') > 0:
                rtconfig.EXEC_PATH = rtconfig.EXEC_PATH.replace('bin40', 'armcc/bin')
P
prife 已提交
170
                Env['LINKFLAGS']=Env['LINKFLAGS'].replace('RV31', 'armcc')
171

B
Bright Pan 已提交
172
        # reset AR command flags
B
bernard 已提交
173 174
        env['ARCOM'] = '$AR --create $TARGET $SOURCES'
        env['LIBPREFIX']   = ''
B
bernard 已提交
175
        env['LIBSUFFIX']   = '.lib'
B
bernard 已提交
176
        env['LIBLINKPREFIX'] = ''
B
bernard 已提交
177
        env['LIBLINKSUFFIX']   = '.lib'
B
bernard 已提交
178
        env['LIBDIRPREFIX'] = '--userlibpath '
B
bernard 已提交
179

G
goprife@gmail.com 已提交
180
    # patch for win32 spawn
G
Grissiom 已提交
181
    if env['PLATFORM'] == 'win32':
G
goprife@gmail.com 已提交
182 183 184
        win32_spawn = Win32Spawn()
        win32_spawn.env = env
        env['SPAWN'] = win32_spawn.spawn
G
Grissiom 已提交
185

186
    if env['PLATFORM'] == 'win32':
187 188 189
        os.environ['PATH'] = rtconfig.EXEC_PATH + ";" + os.environ['PATH']
    else:
        os.environ['PATH'] = rtconfig.EXEC_PATH + ":" + os.environ['PATH']
G
goprife@gmail.com 已提交
190 191 192

    # add program path
    env.PrependENVPath('PATH', rtconfig.EXEC_PATH)
193 194
    # add rtconfig.h path
    env.Append(CPPPATH = [str(Dir('#').abspath)])
G
goprife@gmail.com 已提交
195

B
bernard 已提交
196 197 198 199 200
    # add library build action
    act = SCons.Action.Action(BuildLibInstallAction, 'Install compiled library... $TARGET')
    bld = Builder(action = act)
    Env.Append(BUILDERS = {'BuildLib': bld})

G
goprife@gmail.com 已提交
201
    # parse rtconfig.h to get used component
202
    PreProcessor = PatchedPreProcessor()
G
goprife@gmail.com 已提交
203 204 205 206 207 208
    f = file('rtconfig.h', 'r')
    contents = f.read()
    f.close()
    PreProcessor.process_contents(contents)
    BuildOptions = PreProcessor.cpp_namespace

B
Bernard Xiong 已提交
209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233
    if rtconfig.PLATFORM == 'gcc':
        contents = ''
        if not os.path.isfile('cconfig.h'):
            import gcc
            gcc.GenerateGCCConfig(rtconfig)

        # try again
        if os.path.isfile('cconfig.h'):
            f = file('cconfig.h', 'r')
            if f:
                contents = f.read()
                f.close();

                prep = PatchedPreProcessor()
                prep.process_contents(contents)
                options = prep.cpp_namespace

                BuildOptions.update(options)

                # add HAVE_CCONFIG_H definition
                env.AppendUnique(CPPDEFINES = ['HAVE_CCONFIG_H'])

        if str(env['LINKFLAGS']).find('nano.specs') != -1:
            env.AppendUnique(CPPDEFINES = ['_REENT_SMALL'])

B
Bright Pan 已提交
234
    # add copy option
235 236 237 238 239
    AddOption('--copy',
                      dest='copy',
                      action='store_true',
                      default=False,
                      help='copy rt-thread directory to local.')
240 241 242 243 244
    AddOption('--copy-header',
                      dest='copy-header',
                      action='store_true',
                      default=False,
                      help='copy header of rt-thread directory to local.')
B
bernard 已提交
245 246 247 248 249
    AddOption('--dist',
                      dest = 'make-dist',
                      action = 'store_true',
                      default=False,
                      help = 'make distribution')
250 251 252 253 254
    AddOption('--cscope',
                      dest='cscope',
                      action='store_true',
                      default=False,
                      help='Build Cscope cross reference database. Requires cscope installed.')
255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274
    AddOption('--clang-analyzer',
                      dest='clang-analyzer',
                      action='store_true',
                      default=False,
                      help='Perform static analyze with Clang-analyzer. '+\
                           'Requires Clang installed.\n'+\
                           'It is recommended to use with scan-build like this:\n'+\
                           '`scan-build scons --clang-analyzer`\n'+\
                           'If things goes well, scan-build will instruct you to invoke scan-view.')

    if GetOption('clang-analyzer'):
        # perform what scan-build does
        env.Replace(
                CC   = 'ccc-analyzer',
                CXX  = 'c++-analyzer',
                # skip as and link
                LINK = 'true',
                AS   = 'true',)
        env["ENV"].update(x for x in os.environ.items() if x[0].startswith("CCC_"))
        # only check, don't compile. ccc-analyzer use CCC_CC as the CC.
275 276 277 278 279
        # fsyntax-only will give us some additional warning messages
        env['ENV']['CCC_CC']  = 'clang'
        env.Append(CFLAGS=['-fsyntax-only', '-Wall', '-Wno-invalid-source-encoding'])
        env['ENV']['CCC_CXX'] = 'clang++'
        env.Append(CXXFLAGS=['-fsyntax-only', '-Wall', '-Wno-invalid-source-encoding'])
280 281 282
        # remove the POST_ACTION as it will cause meaningless errors(file not
        # found or something like that).
        rtconfig.POST_ACTION = ''
283

284
    # add build library option
B
Bright Pan 已提交
285 286
    AddOption('--buildlib',
                      dest='buildlib',
287 288
                      type='string',
                      help='building library of a component')
B
Bright Pan 已提交
289 290
    AddOption('--cleanlib',
                      dest='cleanlib',
B
bernard 已提交
291 292 293
                      action='store_true',
                      default=False,
                      help='clean up the library by --buildlib')
294

G
goprife@gmail.com 已提交
295 296 297 298
    # add target option
    AddOption('--target',
                      dest='target',
                      type='string',
299
                      help='set target project: mdk/mdk4/mdk5/iar/vs/vsc/ua/cdk')
G
goprife@gmail.com 已提交
300 301 302 303

    #{target_name:(CROSS_TOOL, PLATFORM)}
    tgt_dict = {'mdk':('keil', 'armcc'),
                'mdk4':('keil', 'armcc'),
B
Bright Pan 已提交
304
                'mdk5':('keil', 'armcc'),
305
                'iar':('iar', 'iar'),
wuyangyong's avatar
wuyangyong 已提交
306
                'vs':('msvc', 'cl'),
307
                'vs2012':('msvc', 'cl'),
308
                'vsc' : ('gcc', 'gcc'),
B
bernard 已提交
309
                'cb':('keil', 'armcc'),
310 311
                'ua':('gcc', 'gcc'),
                'cdk':('gcc', 'gcc')}
G
goprife@gmail.com 已提交
312
    tgt_name = GetOption('target')
313

G
goprife@gmail.com 已提交
314
    if tgt_name:
315 316 317 318 319 320
        # --target will change the toolchain settings which clang-analyzer is
        # depend on
        if GetOption('clang-analyzer'):
            print '--clang-analyzer cannot be used with --target'
            sys.exit(1)

G
goprife@gmail.com 已提交
321 322 323 324 325 326 327 328
        SetOption('no_exec', 1)
        try:
            rtconfig.CROSS_TOOL, rtconfig.PLATFORM = tgt_dict[tgt_name]
        except KeyError:
            print 'Unknow target: %s. Avaible targets: %s' % \
                    (tgt_name, ', '.join(tgt_dict.keys()))
            sys.exit(1)
    elif (GetDepend('RT_USING_NEWLIB') == False and GetDepend('RT_USING_NOLIBC') == False) \
329
        and rtconfig.PLATFORM == 'gcc':
G
goprife@gmail.com 已提交
330 331
        AddDepend('RT_USING_MINILIBC')

332
    AddOption('--genconfig',
B
bernard 已提交
333 334
                dest = 'genconfig',
                action = 'store_true',
335
                default = False,
B
bernard 已提交
336 337 338 339 340 341
                help = 'Generate .config from rtconfig.h')
    if GetOption('genconfig'):
        from genconf import genconfig
        genconfig()
        exit(0)

B
Bernard Xiong 已提交
342
    if env['PLATFORM'] != 'win32':
343
        AddOption('--menuconfig',
B
Bernard Xiong 已提交
344 345 346 347 348 349 350 351 352
                    dest = 'menuconfig',
                    action = 'store_true',
                    default = False,
                    help = 'make menuconfig for RT-Thread BSP')
        if GetOption('menuconfig'):
            from menuconfig import menuconfig
            menuconfig(Rtt_Root)
            exit(0)

B
bernard 已提交
353 354 355 356 357 358 359 360 361 362
    AddOption('--useconfig',
                dest = 'useconfig',
                type='string',
                help = 'make rtconfig.h from config file.')
    configfn = GetOption('useconfig')
    if configfn:
        from menuconfig import mk_rtconfig
        mk_rtconfig(configfn)
        exit(0)

363
    # add comstr option
364 365
    AddOption('--verbose',
                dest='verbose',
366
                action='store_true',
B
Bernard Xiong 已提交
367
                default=False,
368
                help='print verbose information during build')
369

370 371
    if not GetOption('verbose'):
        # override the default verbose command string
372
        env.Replace(
R
Rogerz Zhang 已提交
373
            ARCOMSTR = 'AR $TARGET',
374
            ASCOMSTR = 'AS $TARGET',
R
Rogerz Zhang 已提交
375
            ASPPCOMSTR = 'AS $TARGET',
376 377 378 379
            CCCOMSTR = 'CC $TARGET',
            CXXCOMSTR = 'CXX $TARGET',
            LINKCOMSTR = 'LINK $TARGET'
        )
G
goprife@gmail.com 已提交
380

381 382 383 384 385
    # fix the linker for C++
    if GetDepend('RT_USING_CPLUSPLUS'):
        if env['LINK'].find('gcc') != -1:
            env['LINK'] = env['LINK'].replace('gcc', 'g++')

386 387 388
    # we need to seperate the variant_dir for BSPs and the kernels. BSPs could
    # have their own components etc. If they point to the same folder, SCons
    # would find the wrong source code to compile.
B
Bernard Xiong 已提交
389
    bsp_vdir = 'build'
390 391 392
    kernel_vdir = 'build/kernel'
    # board build script
    objs = SConscript('SConscript', variant_dir=bsp_vdir, duplicate=0)
G
goprife@gmail.com 已提交
393
    # include kernel
394
    objs.extend(SConscript(Rtt_Root + '/src/SConscript', variant_dir=kernel_vdir + '/src', duplicate=0))
G
goprife@gmail.com 已提交
395 396
    # include libcpu
    if not has_libcpu:
397 398
        objs.extend(SConscript(Rtt_Root + '/libcpu/SConscript',
                    variant_dir=kernel_vdir + '/libcpu', duplicate=0))
399

G
goprife@gmail.com 已提交
400
    # include components
401
    objs.extend(SConscript(Rtt_Root + '/components/SConscript',
402
                           variant_dir=kernel_vdir + '/components',
403 404
                           duplicate=0,
                           exports='remove_components'))
G
goprife@gmail.com 已提交
405 406 407

    return objs

B
Bernard Xiong 已提交
408
def PrepareModuleBuilding(env, root_directory, bsp_directory):
G
goprife@gmail.com 已提交
409 410
    import rtconfig

411
    global BuildOptions
G
goprife@gmail.com 已提交
412 413 414
    global Env
    global Rtt_Root

415 416 417 418 419 420
    # patch for win32 spawn
    if env['PLATFORM'] == 'win32':
        win32_spawn = Win32Spawn()
        win32_spawn.env = env
        env['SPAWN'] = win32_spawn.spawn

G
goprife@gmail.com 已提交
421 422 423
    Env = env
    Rtt_Root = root_directory

B
Bernard Xiong 已提交
424
    # parse bsp rtconfig.h to get used component
425
    PreProcessor = PatchedPreProcessor()
B
Bernard Xiong 已提交
426 427 428 429 430 431
    f = file(bsp_directory + '/rtconfig.h', 'r')
    contents = f.read()
    f.close()
    PreProcessor.process_contents(contents)
    BuildOptions = PreProcessor.cpp_namespace

B
Bright Pan 已提交
432 433 434
    # add build/clean library option for library checking
    AddOption('--buildlib',
              dest='buildlib',
B
bernard 已提交
435 436
              type='string',
              help='building library of a component')
B
Bright Pan 已提交
437 438
    AddOption('--cleanlib',
              dest='cleanlib',
B
bernard 已提交
439 440 441 442
              action='store_true',
              default=False,
              help='clean up the library by --buildlib')

G
goprife@gmail.com 已提交
443 444 445
    # add program path
    env.PrependENVPath('PATH', rtconfig.EXEC_PATH)

wuyangyong's avatar
wuyangyong 已提交
446 447 448 449 450 451 452
def GetConfigValue(name):
    assert type(name) == str, 'GetConfigValue: only string parameter is valid'
    try:
        return BuildOptions[name]
    except:
        return ''

G
goprife@gmail.com 已提交
453 454 455 456 457 458 459
def GetDepend(depend):
    building = True
    if type(depend) == type('str'):
        if not BuildOptions.has_key(depend) or BuildOptions[depend] == 0:
            building = False
        elif BuildOptions[depend] != '':
            return BuildOptions[depend]
B
Bright Pan 已提交
460

G
goprife@gmail.com 已提交
461 462 463 464 465 466 467 468 469 470
        return building

    # for list type depend
    for item in depend:
        if item != '':
            if not BuildOptions.has_key(item) or BuildOptions[item] == 0:
                building = False

    return building

B
Bernard Xiong 已提交
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503
def LocalOptions(config_filename):
    from SCons.Script import SCons

    # parse wiced_config.h to get used component
    PreProcessor = SCons.cpp.PreProcessor()

    f = file(config_filename, 'r')
    contents = f.read()
    f.close()

    PreProcessor.process_contents(contents)
    local_options = PreProcessor.cpp_namespace

    return local_options

def GetLocalDepend(options, depend):
    building = True
    if type(depend) == type('str'):
        if not options.has_key(depend) or options[depend] == 0:
            building = False
        elif options[depend] != '':
            return options[depend]

        return building

    # for list type depend
    for item in depend:
        if item != '':
            if not options.has_key(item) or options[item] == 0:
                building = False

    return building

G
goprife@gmail.com 已提交
504 505 506
def AddDepend(option):
    BuildOptions[option] = 1

507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523
def MergeGroup(src_group, group):
    src_group['src'] = src_group['src'] + group['src']
    if group.has_key('CCFLAGS'):
        if src_group.has_key('CCFLAGS'):
            src_group['CCFLAGS'] = src_group['CCFLAGS'] + group['CCFLAGS']
        else:
            src_group['CCFLAGS'] = group['CCFLAGS']
    if group.has_key('CPPPATH'):
        if src_group.has_key('CPPPATH'):
            src_group['CPPPATH'] = src_group['CPPPATH'] + group['CPPPATH']
        else:
            src_group['CPPPATH'] = group['CPPPATH']
    if group.has_key('CPPDEFINES'):
        if src_group.has_key('CPPDEFINES'):
            src_group['CPPDEFINES'] = src_group['CPPDEFINES'] + group['CPPDEFINES']
        else:
            src_group['CPPDEFINES'] = group['CPPDEFINES']
524 525 526 527 528
    if group.has_key('ASFLAGS'):
        if src_group.has_key('ASFLAGS'):
            src_group['ASFLAGS'] = src_group['ASFLAGS'] + group['ASFLAGS']
        else:
            src_group['ASFLAGS'] = group['ASFLAGS']
529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546

    # for local CCFLAGS/CPPPATH/CPPDEFINES
    if group.has_key('LOCAL_CCFLAGS'):
        if src_group.has_key('LOCAL_CCFLAGS'):
            src_group['LOCAL_CCFLAGS'] = src_group['LOCAL_CCFLAGS'] + group['LOCAL_CCFLAGS']
        else:
            src_group['LOCAL_CCFLAGS'] = group['LOCAL_CCFLAGS']
    if group.has_key('LOCAL_CPPPATH'):
        if src_group.has_key('LOCAL_CPPPATH'):
            src_group['LOCAL_CPPPATH'] = src_group['LOCAL_CPPPATH'] + group['LOCAL_CPPPATH']
        else:
            src_group['LOCAL_CPPPATH'] = group['LOCAL_CPPPATH']
    if group.has_key('LOCAL_CPPDEFINES'):
        if src_group.has_key('LOCAL_CPPDEFINES'):
            src_group['LOCAL_CPPDEFINES'] = src_group['LOCAL_CPPDEFINES'] + group['LOCAL_CPPDEFINES']
        else:
            src_group['LOCAL_CPPDEFINES'] = group['LOCAL_CPPDEFINES']

547 548 549 550 551
    if group.has_key('LINKFLAGS'):
        if src_group.has_key('LINKFLAGS'):
            src_group['LINKFLAGS'] = src_group['LINKFLAGS'] + group['LINKFLAGS']
        else:
            src_group['LINKFLAGS'] = group['LINKFLAGS']
552 553 554
    if group.has_key('LIBS'):
        if src_group.has_key('LIBS'):
            src_group['LIBS'] = src_group['LIBS'] + group['LIBS']
555
        else:
556 557 558 559 560 561
            src_group['LIBS'] = group['LIBS']
    if group.has_key('LIBPATH'):
        if src_group.has_key('LIBPATH'):
            src_group['LIBPATH'] = src_group['LIBPATH'] + group['LIBPATH']
        else:
            src_group['LIBPATH'] = group['LIBPATH']
562 563 564 565 566
    if group.has_key('LOCAL_ASFLAGS'):
        if src_group.has_key('LOCAL_ASFLAGS'):
            src_group['LOCAL_ASFLAGS'] = src_group['LOCAL_ASFLAGS'] + group['LOCAL_ASFLAGS']
        else:
            src_group['LOCAL_ASFLAGS'] = group['LOCAL_ASFLAGS']
567

G
goprife@gmail.com 已提交
568 569 570 571 572
def DefineGroup(name, src, depend, **parameters):
    global Env
    if not GetDepend(depend):
        return []

573 574 575 576 577 578 579 580
    # find exist group and get path of group
    group_path = ''
    for g in Projects:
        if g['name'] == name:
            group_path = g['path']
    if group_path == '':
        group_path = GetCurrentDir()

G
goprife@gmail.com 已提交
581 582
    group = parameters
    group['name'] = name
583
    group['path'] = group_path
584
    if type(src) == type([]):
G
goprife@gmail.com 已提交
585 586 587 588 589
        group['src'] = File(src)
    else:
        group['src'] = src

    if group.has_key('CCFLAGS'):
590
        Env.AppendUnique(CCFLAGS = group['CCFLAGS'])
G
goprife@gmail.com 已提交
591
    if group.has_key('CPPPATH'):
592
        Env.AppendUnique(CPPPATH = group['CPPPATH'])
G
goprife@gmail.com 已提交
593
    if group.has_key('CPPDEFINES'):
594
        Env.AppendUnique(CPPDEFINES = group['CPPDEFINES'])
G
goprife@gmail.com 已提交
595
    if group.has_key('LINKFLAGS'):
596
        Env.AppendUnique(LINKFLAGS = group['LINKFLAGS'])
597 598
    if group.has_key('ASFLAGS'):
        Env.AppendUnique(ASFLAGS = group['ASFLAGS'])
B
bernard 已提交
599

B
Bright Pan 已提交
600
    # check whether to clean up library
B
bernard 已提交
601
    if GetOption('cleanlib') and os.path.exists(os.path.join(group['path'], GroupLibFullName(name, Env))):
B
bernard 已提交
602
        if group['src'] != []:
B
bernard 已提交
603
            print 'Remove library:', GroupLibFullName(name, Env)
B
bernard 已提交
604 605 606
            fn = os.path.join(group['path'], GroupLibFullName(name, Env))
            if os.path.exists(fn):
                os.unlink(fn)
B
bernard 已提交
607 608

    # check whether exist group library
B
bernard 已提交
609
    if not GetOption('buildlib') and os.path.exists(os.path.join(group['path'], GroupLibFullName(name, Env))):
B
bernard 已提交
610
        group['src'] = []
611 612 613 614
        if group.has_key('LIBS'): group['LIBS'] = group['LIBS'] + [GroupLibName(name, Env)]
        else : group['LIBS'] = [GroupLibName(name, Env)]
        if group.has_key('LIBPATH'): group['LIBPATH'] = group['LIBPATH'] + [GetCurrentDir()]
        else : group['LIBPATH'] = [GetCurrentDir()]
B
bernard 已提交
615

616
    if group.has_key('LIBS'):
617
        Env.AppendUnique(LIBS = group['LIBS'])
618
    if group.has_key('LIBPATH'):
619
        Env.AppendUnique(LIBPATH = group['LIBPATH'])
G
goprife@gmail.com 已提交
620

621
    # check whether to build group library
G
goprife@gmail.com 已提交
622
    if group.has_key('LIBRARY'):
623 624
        objs = Env.Library(name, group['src'])
    else:
625
        # only add source
626
        objs = group['src']
G
goprife@gmail.com 已提交
627

B
Bright Pan 已提交
628
    # merge group
629 630 631 632 633 634
    for g in Projects:
        if g['name'] == name:
            # merge to this group
            MergeGroup(g, group)
            return objs

B
Bright Pan 已提交
635
    # add a new group
636 637
    Projects.append(group)

G
goprife@gmail.com 已提交
638 639 640 641 642 643 644 645 646
    return objs

def GetCurrentDir():
    conscript = File('SConscript')
    fn = conscript.rfile()
    name = fn.name
    path = os.path.dirname(fn.abspath)
    return path

647 648 649 650 651 652 653 654 655 656 657
PREBUILDING = []
def RegisterPreBuildingAction(act):
    global PREBUILDING
    assert callable(act), 'Could only register callable objects. %s received' % repr(act)
    PREBUILDING.append(act)

def PreBuilding():
    global PREBUILDING
    for a in PREBUILDING:
        a()

B
bernard 已提交
658
def GroupLibName(name, env):
B
bernard 已提交
659 660 661 662 663 664 665 666 667 668
    import rtconfig
    if rtconfig.PLATFORM == 'armcc':
        return name + '_rvds'
    elif rtconfig.PLATFORM == 'gcc':
        return name + '_gcc'

    return name

def GroupLibFullName(name, env):
    return env['LIBPREFIX'] + GroupLibName(name, env) + env['LIBSUFFIX']
B
bernard 已提交
669 670 671 672 673

def BuildLibInstallAction(target, source, env):
    lib_name = GetOption('buildlib')
    for Group in Projects:
        if Group['name'] == lib_name:
B
bernard 已提交
674
            lib_name = GroupLibFullName(Group['name'], env)
B
bernard 已提交
675 676 677 678 679
            dst_name = os.path.join(Group['path'], lib_name)
            print 'Copy %s => %s' % (lib_name, dst_name)
            do_copy_file(lib_name, dst_name)
            break

680
def DoBuilding(target, objects):
681 682 683 684 685 686 687 688 689 690 691

    # merge all objects into one list
    def one_list(l):
        lst = []
        for item in l:
            if type(item) == type([]):
                lst += one_list(item)
            else:
                lst.append(item)
        return lst

692 693
    # handle local group
    def local_group(group, objects):
694
        if group.has_key('LOCAL_CCFLAGS') or group.has_key('LOCAL_CPPPATH') or group.has_key('LOCAL_CPPDEFINES') or group.has_key('LOCAL_ASFLAGS'):
695 696 697
            CCFLAGS = Env.get('CCFLAGS', '') + group.get('LOCAL_CCFLAGS', '')
            CPPPATH = Env.get('CPPPATH', ['']) + group.get('LOCAL_CPPPATH', [''])
            CPPDEFINES = Env.get('CPPDEFINES', ['']) + group.get('LOCAL_CPPDEFINES', [''])
698
            ASFLAGS = Env.get('ASFLAGS', '') + group.get('LOCAL_ASFLAGS', '')
699 700

            for source in group['src']:
701
                objects.append(Env.Object(source, CCFLAGS = CCFLAGS, ASFLAGS = ASFLAGS,
702 703 704 705 706 707 708
                    CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES))

            return True

        return False

    objects = one_list(objects)
709

710 711 712 713
    program = None
    # check whether special buildlib option
    lib_name = GetOption('buildlib')
    if lib_name:
714
        objects = [] # remove all of objects
715 716 717
        # build library with special component
        for Group in Projects:
            if Group['name'] == lib_name:
B
bernard 已提交
718
                lib_name = GroupLibName(Group['name'], Env)
719 720 721
                if not local_group(Group, objects):
                    objects = Env.Object(Group['src'])

722
                program = Env.Library(lib_name, objects)
B
bernard 已提交
723 724 725 726

                # add library copy action
                Env.BuildLib(lib_name, program)

727 728
                break
    else:
729 730 731 732 733 734 735 736 737 738 739 740
        # remove source files with local flags setting
        for group in Projects:
            if group.has_key('LOCAL_CCFLAGS') or group.has_key('LOCAL_CPPPATH') or group.has_key('LOCAL_CPPDEFINES'):
                for source in group['src']:
                    for obj in objects:
                        if source.abspath == obj.abspath or (len(obj.sources) > 0 and source.abspath == obj.sources[0].abspath):
                            objects.remove(obj)

        # re-add the source files to the objects
        for group in Projects:
            local_group(group, objects)

741 742 743
        program = Env.Program(target, objects)

    EndBuilding(target, program)
744 745
        
def GenTargetProject(program = None):
G
goprife@gmail.com 已提交
746 747

    if GetOption('target') == 'mdk':
B
bernard 已提交
748 749
        from keil import MDKProject
        from keil import MDK4Project
B
Bright Pan 已提交
750
        from keil import MDK5Project
B
bernard 已提交
751

G
goprife@gmail.com 已提交
752 753 754 755 756 757 758 759
        template = os.path.isfile('template.Uv2')
        if template:
            MDKProject('project.Uv2', Projects)
        else:
            template = os.path.isfile('template.uvproj')
            if template:
                MDK4Project('project.uvproj', Projects)
            else:
B
Bright Pan 已提交
760 761 762 763 764 765
                template = os.path.isfile('template.uvprojx')
                if template:
                    MDK5Project('project.uvprojx', Projects)
                else:
                    print 'No template project file found.'

G
goprife@gmail.com 已提交
766
    if GetOption('target') == 'mdk4':
B
bernard 已提交
767
        from keil import MDK4Project
G
goprife@gmail.com 已提交
768 769
        MDK4Project('project.uvproj', Projects)

B
Bright Pan 已提交
770 771 772 773
    if GetOption('target') == 'mdk5':
        from keil import MDK5Project
        MDK5Project('project.uvprojx', Projects)

G
goprife@gmail.com 已提交
774
    if GetOption('target') == 'iar':
B
bernard 已提交
775
        from iar import IARProject
B
Bright Pan 已提交
776
        IARProject('project.ewp', Projects)
777

778
    if GetOption('target') == 'vs':
B
bernard 已提交
779
        from vs import VSProject
780
        VSProject('project.vcproj', Projects, program)
781

782
    if GetOption('target') == 'vs2012':
B
bernard 已提交
783
        from vs2012 import VS2012Project
784 785
        VS2012Project('project.vcxproj', Projects, program)

wuyangyong's avatar
wuyangyong 已提交
786
    if GetOption('target') == 'cb':
B
bernard 已提交
787
        from codeblocks import CBProject
wuyangyong's avatar
wuyangyong 已提交
788 789
        CBProject('project.cbp', Projects, program)

B
bernard 已提交
790 791 792
    if GetOption('target') == 'ua':
        from ua import PrepareUA
        PrepareUA(Projects, Rtt_Root, str(Dir('#')))
B
Bright Pan 已提交
793

794 795 796
    if GetOption('target') == 'vsc':
        from vsc import GenerateVSCode
        GenerateVSCode(Env)
797

798 799 800
    if GetOption('target') == 'cdk':
        from cdk import CDKProject
        CDKProject('project.cdkproj', Projects)
801

802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818
def EndBuilding(target, program = None):
    import rtconfig

    need_exit = False

    Env['target']  = program
    Env['project'] = Projects

    Env.AddPostAction(target, rtconfig.POST_ACTION)
    # Add addition clean files
    Clean(target, 'cconfig.h')
    Clean(target, 'rtua.py')
    Clean(target, 'rtua.pyc')

    if GetOption('target'):
        GenTargetProject(program)

B
bernard 已提交
819
    BSP_ROOT = Dir('#').abspath
820
    if GetOption('copy') and program != None:
B
bernard 已提交
821 822
        from mkdist import MakeCopy
        MakeCopy(program, BSP_ROOT, Rtt_Root, Env)
823
        need_exit = True
824
    if GetOption('copy-header') and program != None:
B
bernard 已提交
825 826
        from mkdist import MakeCopyHeader
        MakeCopyHeader(program, BSP_ROOT, Rtt_Root, Env)
827
        need_exit = True
B
bernard 已提交
828 829 830
    if GetOption('make-dist') and program != None:
        from mkdist import MkDist
        MkDist(program, BSP_ROOT, Rtt_Root, Env)
831
        need_exit = True
832 833 834 835
    if GetOption('cscope'):
        from cscope import CscopeDatabase
        CscopeDatabase(Projects)

836 837
    if not GetOption('help') and not GetOption('target'):
        if not os.path.exists(rtconfig.EXEC_PATH):
838 839 840 841 842
            print "Error: the toolchain path (%s) is not exist, please check 'EXEC_PATH' in path or rtconfig.py." % rtconfig.EXEC_PATH
            need_exit = True

    if need_exit:
        exit(0)
843

G
goprife@gmail.com 已提交
844
def SrcRemove(src, remove):
G
Grissiom 已提交
845 846 847
    if not src:
        return

X
xieyangrun 已提交
848
    src_bak = src[:]
849 850 851 852 853 854

    if type(remove) == type('str'):
        if os.path.isabs(remove):
            remove = os.path.relpath(remove, GetCurrentDir())
        remove = os.path.normpath(remove)

X
xieyangrun 已提交
855
        for item in src_bak:
856 857 858 859
            if type(item) == type('str'):
                item_str = item
            else:
                item_str = item.rstr()
860

861 862 863
            if os.path.isabs(item_str):
                item_str = os.path.relpath(item_str, GetCurrentDir())
            item_str = os.path.normpath(item_str)
864 865

            if item_str == remove:
X
xieyangrun 已提交
866
                src.remove(item)
867 868 869 870 871 872 873
    else:
        for remove_item in remove:
            remove_str = str(remove_item)
            if os.path.isabs(remove_str):
                remove_str = os.path.relpath(remove_str, GetCurrentDir())
            remove_str = os.path.normpath(remove_str)

X
xieyangrun 已提交
874
            for item in src_bak:
875 876 877 878 879 880 881 882 883 884
                if type(item) == type('str'):
                    item_str = item
                else:
                    item_str = item.rstr()

                if os.path.isabs(item_str):
                    item_str = os.path.relpath(item_str, GetCurrentDir())
                item_str = os.path.normpath(item_str)

                if item_str == remove_str:
X
xieyangrun 已提交
885
                    src.remove(item)
886 887 888 889 890 891 892

def GetVersion():
    import SCons.cpp
    import string

    rtdef = os.path.join(Rtt_Root, 'include', 'rtdef.h')

B
Bright Pan 已提交
893
    # parse rtdef.h to get RT-Thread version
894
    prepcessor = PatchedPreProcessor()
895 896 897 898 899 900 901 902 903 904 905 906 907 908
    f = file(rtdef, 'r')
    contents = f.read()
    f.close()
    prepcessor.process_contents(contents)
    def_ns = prepcessor.cpp_namespace

    version = int(filter(lambda ch: ch in '0123456789.', def_ns['RT_VERSION']))
    subversion = int(filter(lambda ch: ch in '0123456789.', def_ns['RT_SUBVERSION']))

    if def_ns.has_key('RT_REVISION'):
        revision = int(filter(lambda ch: ch in '0123456789.', def_ns['RT_REVISION']))
        return '%d.%d.%d' % (version, subversion, revision)

    return '0.%d.%d' % (version, subversion)
909

910 911 912 913
def GlobSubDir(sub_dir, ext_name):
    import os
    import glob

914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
    def glob_source(sub_dir, ext_name):
        list = os.listdir(sub_dir)
        src = glob.glob(os.path.join(sub_dir, ext_name))

        for item in list:
            full_subdir = os.path.join(sub_dir, item)
            if os.path.isdir(full_subdir):
                src += glob_source(full_subdir, ext_name)
        return src

    dst = []
    src = glob_source(sub_dir, ext_name)
    for item in src:
        dst.append(os.path.relpath(item, sub_dir))
    return dst
929

930 931 932 933
def PackageSConscript(package):
    from package import BuildPackage

    return BuildPackage(package)