Lines Matching full:target
187 AddOption('--target',
188 dest = 'target',
190 help = 'set target project: mdk/mdk4/mdk5/iar/vs/vsc/ua/cdk/ses')
232 tgt_name = GetOption('target')
235 # --target will change the toolchain settings which clang-analyzer is
238 print ('--clang-analyzer cannot be used with --target')
248 print ('Unknow target: '+ tgt_name+'. Avaible targets: ' +', '.join(tgt_dict.keys()))
269 env['ARCOM'] = '$AR --create $TARGET $SOURCES'
300 act = SCons.Action.Action(BuildLibInstallAction, 'Install compiled library... $TARGET')
386 ARCOMSTR = 'AR $TARGET',
387 ASCOMSTR = 'AS $TARGET',
388 ASPPCOMSTR = 'AS $TARGET',
389 CCCOMSTR = 'CC $TARGET',
390 CXXCOMSTR = 'CXX $TARGET',
391 LINKCOMSTR = 'LINK $TARGET'
691 def BuildLibInstallAction(target, source, env): argument
701 def DoBuilding(target, objects): argument
762 program = Env.Program(target, objects)
764 EndBuilding(target, program)
768 if GetOption('target') == 'mdk':
787 if GetOption('target') == 'mdk4':
791 if GetOption('target') == 'mdk5':
795 if GetOption('target') == 'iar':
799 if GetOption('target') == 'vs':
803 if GetOption('target') == 'vs2012':
807 if GetOption('target') == 'cb':
811 if GetOption('target') == 'ua':
815 if GetOption('target') == 'vsc':
819 if GetOption('target') == 'cdk':
823 if GetOption('target') == 'ses':
827 def EndBuilding(target, program = None): argument
832 Env['target'] = program
841 Env.AddPostAction(target, rtconfig.POST_ACTION)
843 Clean(target, 'cconfig.h')
844 Clean(target, 'rtua.py')
845 Clean(target, 'rtua.pyc')
847 if GetOption('target'):
862 if not GetOption('help') and not GetOption('target'):