building.py 34 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032
  1. #
  2. # File : building.py
  3. # This file is part of RT-Thread RTOS
  4. # COPYRIGHT (C) 2006 - 2015, RT-Thread Development Team
  5. #
  6. # This program is free software; you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation; either version 2 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License along
  17. # with this program; if not, write to the Free Software Foundation, Inc.,
  18. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
  19. #
  20. # Change Logs:
  21. # Date Author Notes
  22. # 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. import os
  27. import sys
  28. import string
  29. import utils
  30. import operator
  31. from SCons.Script import *
  32. from utils import _make_path_relative
  33. from mkdist import do_copy_file
  34. BuildOptions = {}
  35. Projects = []
  36. Rtt_Root = ''
  37. Env = None
  38. # SCons PreProcessor patch
  39. def start_handling_includes(self, t=None):
  40. """
  41. Causes the PreProcessor object to start processing #import,
  42. #include and #include_next lines.
  43. This method will be called when a #if, #ifdef, #ifndef or #elif
  44. evaluates True, or when we reach the #else in a #if, #ifdef,
  45. #ifndef or #elif block where a condition already evaluated
  46. False.
  47. """
  48. d = self.dispatch_table
  49. p = self.stack[-1] if self.stack else self.default_table
  50. for k in ('import', 'include', 'include_next', 'define'):
  51. d[k] = p[k]
  52. def stop_handling_includes(self, t=None):
  53. """
  54. Causes the PreProcessor object to stop processing #import,
  55. #include and #include_next lines.
  56. This method will be called when a #if, #ifdef, #ifndef or #elif
  57. evaluates False, or when we reach the #else in a #if, #ifdef,
  58. #ifndef or #elif block where a condition already evaluated True.
  59. """
  60. d = self.dispatch_table
  61. d['import'] = self.do_nothing
  62. d['include'] = self.do_nothing
  63. d['include_next'] = self.do_nothing
  64. d['define'] = self.do_nothing
  65. PatchedPreProcessor = SCons.cpp.PreProcessor
  66. PatchedPreProcessor.start_handling_includes = start_handling_includes
  67. PatchedPreProcessor.stop_handling_includes = stop_handling_includes
  68. class Win32Spawn:
  69. def spawn(self, sh, escape, cmd, args, env):
  70. # deal with the cmd build-in commands which cannot be used in
  71. # subprocess.Popen
  72. if cmd == 'del':
  73. for f in args[1:]:
  74. try:
  75. os.remove(f)
  76. except Exception as e:
  77. print ('Error removing file: ' + e)
  78. return -1
  79. return 0
  80. import subprocess
  81. newargs = ' '.join(args[1:])
  82. cmdline = cmd + " " + newargs
  83. # Make sure the env is constructed by strings
  84. _e = dict([(k, str(v)) for k, v in env.items()])
  85. # Windows(tm) CreateProcess does not use the env passed to it to find
  86. # the executables. So we have to modify our own PATH to make Popen
  87. # work.
  88. old_path = os.environ['PATH']
  89. os.environ['PATH'] = _e['PATH']
  90. try:
  91. proc = subprocess.Popen(cmdline, env=_e, shell=False)
  92. except Exception as e:
  93. print ('Error in calling command:' + cmdline.split(' ')[0])
  94. print ('Exception: ' + os.strerror(e.errno))
  95. if (os.strerror(e.errno) == "No such file or directory"):
  96. print ("\nPlease check Toolchains PATH setting.\n")
  97. return e.errno
  98. finally:
  99. os.environ['PATH'] = old_path
  100. return proc.wait()
  101. # generate cconfig.h file
  102. def GenCconfigFile(env, BuildOptions):
  103. import rtconfig
  104. if rtconfig.PLATFORM == 'gcc':
  105. contents = ''
  106. if not os.path.isfile('cconfig.h'):
  107. import gcc
  108. gcc.GenerateGCCConfig(rtconfig)
  109. # try again
  110. if os.path.isfile('cconfig.h'):
  111. f = open('cconfig.h', 'r')
  112. if f:
  113. contents = f.read()
  114. f.close()
  115. prep = PatchedPreProcessor()
  116. prep.process_contents(contents)
  117. options = prep.cpp_namespace
  118. BuildOptions.update(options)
  119. # add HAVE_CCONFIG_H definition
  120. env.AppendUnique(CPPDEFINES = ['HAVE_CCONFIG_H'])
  121. def PrepareBuilding(env, root_directory, has_libcpu=False, remove_components = []):
  122. import rtconfig
  123. global BuildOptions
  124. global Projects
  125. global Env
  126. global Rtt_Root
  127. # ===== Add option to SCons =====
  128. AddOption('--dist',
  129. dest = 'make-dist',
  130. action = 'store_true',
  131. default = False,
  132. help = 'make distribution')
  133. AddOption('--dist-strip',
  134. dest = 'make-dist-strip',
  135. action = 'store_true',
  136. default = False,
  137. help = 'make distribution and strip useless files')
  138. AddOption('--dist-ide',
  139. dest = 'make-dist-ide',
  140. action = 'store_true',
  141. default = False,
  142. help = 'make distribution for RT-Thread Studio IDE')
  143. AddOption('--project-path',
  144. dest = 'project-path',
  145. type = 'string',
  146. default = None,
  147. help = 'set dist-ide project output path')
  148. AddOption('--project-name',
  149. dest = 'project-name',
  150. type = 'string',
  151. default = None,
  152. help = 'set project name')
  153. AddOption('--reset-project-config',
  154. dest = 'reset-project-config',
  155. action = 'store_true',
  156. default = False,
  157. help = 'reset the project configurations to default')
  158. AddOption('--cscope',
  159. dest = 'cscope',
  160. action = 'store_true',
  161. default = False,
  162. help = 'Build Cscope cross reference database. Requires cscope installed.')
  163. AddOption('--clang-analyzer',
  164. dest = 'clang-analyzer',
  165. action = 'store_true',
  166. default = False,
  167. help = 'Perform static analyze with Clang-analyzer. ' + \
  168. 'Requires Clang installed.\n' + \
  169. 'It is recommended to use with scan-build like this:\n' + \
  170. '`scan-build scons --clang-analyzer`\n' + \
  171. 'If things goes well, scan-build will instruct you to invoke scan-view.')
  172. AddOption('--buildlib',
  173. dest = 'buildlib',
  174. type = 'string',
  175. help = 'building library of a component')
  176. AddOption('--cleanlib',
  177. dest = 'cleanlib',
  178. action = 'store_true',
  179. default = False,
  180. help = 'clean up the library by --buildlib')
  181. AddOption('--target',
  182. dest = 'target',
  183. type = 'string',
  184. help = 'set target project: mdk/mdk4/mdk5/iar/vs/vsc/ua/cdk/ses/makefile/eclipse/codelite')
  185. AddOption('--stackanalysis',
  186. dest = 'stackanalysis',
  187. action = 'store_true',
  188. default = False,
  189. help = 'thread stack static analysis')
  190. AddOption('--genconfig',
  191. dest = 'genconfig',
  192. action = 'store_true',
  193. default = False,
  194. help = 'Generate .config from rtconfig.h')
  195. AddOption('--useconfig',
  196. dest = 'useconfig',
  197. type = 'string',
  198. help = 'make rtconfig.h from config file.')
  199. AddOption('--verbose',
  200. dest = 'verbose',
  201. action = 'store_true',
  202. default = False,
  203. help = 'print verbose information during build')
  204. Env = env
  205. Rtt_Root = os.path.abspath(root_directory)
  206. # make an absolute root directory
  207. RTT_ROOT = Rtt_Root
  208. Export('RTT_ROOT')
  209. # set RTT_ROOT in ENV
  210. Env['RTT_ROOT'] = Rtt_Root
  211. # set BSP_ROOT in ENV
  212. Env['BSP_ROOT'] = Dir('#').abspath
  213. sys.path = sys.path + [os.path.join(Rtt_Root, 'tools')]
  214. # {target_name:(CROSS_TOOL, PLATFORM)}
  215. tgt_dict = {'mdk':('keil', 'armcc'),
  216. 'mdk4':('keil', 'armcc'),
  217. 'mdk5':('keil', 'armcc'),
  218. 'iar':('iar', 'iar'),
  219. 'vs':('msvc', 'cl'),
  220. 'vs2012':('msvc', 'cl'),
  221. 'vsc' : ('gcc', 'gcc'),
  222. 'cb':('keil', 'armcc'),
  223. 'ua':('gcc', 'gcc'),
  224. 'cdk':('gcc', 'gcc'),
  225. 'makefile':('gcc', 'gcc'),
  226. 'eclipse':('gcc', 'gcc'),
  227. 'ses' : ('gcc', 'gcc'),
  228. 'codelite' : ('gcc', 'gcc')}
  229. tgt_name = GetOption('target')
  230. if tgt_name:
  231. # --target will change the toolchain settings which clang-analyzer is
  232. # depend on
  233. if GetOption('clang-analyzer'):
  234. print ('--clang-analyzer cannot be used with --target')
  235. sys.exit(1)
  236. SetOption('no_exec', 1)
  237. try:
  238. rtconfig.CROSS_TOOL, rtconfig.PLATFORM = tgt_dict[tgt_name]
  239. # replace the 'RTT_CC' to 'CROSS_TOOL'
  240. os.environ['RTT_CC'] = rtconfig.CROSS_TOOL
  241. utils.ReloadModule(rtconfig)
  242. except KeyError:
  243. print ('Unknow target: '+ tgt_name+'. Avaible targets: ' +', '.join(tgt_dict.keys()))
  244. sys.exit(1)
  245. elif (GetDepend('RT_USING_NEWLIB') == False and GetDepend('RT_USING_NOLIBC') == False) \
  246. and rtconfig.PLATFORM == 'gcc':
  247. AddDepend('RT_USING_MINILIBC')
  248. # auto change the 'RTT_EXEC_PATH' when 'rtconfig.EXEC_PATH' get failed
  249. if not os.path.exists(rtconfig.EXEC_PATH):
  250. if 'RTT_EXEC_PATH' in os.environ:
  251. # del the 'RTT_EXEC_PATH' and using the 'EXEC_PATH' setting on rtconfig.py
  252. del os.environ['RTT_EXEC_PATH']
  253. utils.ReloadModule(rtconfig)
  254. # add compability with Keil MDK 4.6 which changes the directory of armcc.exe
  255. if rtconfig.PLATFORM == 'armcc' or rtconfig.PLATFORM == 'armclang':
  256. if rtconfig.PLATFORM == 'armcc' and not os.path.isfile(os.path.join(rtconfig.EXEC_PATH, 'armcc.exe')):
  257. if rtconfig.EXEC_PATH.find('bin40') > 0:
  258. rtconfig.EXEC_PATH = rtconfig.EXEC_PATH.replace('bin40', 'armcc/bin')
  259. Env['LINKFLAGS'] = Env['LINKFLAGS'].replace('RV31', 'armcc')
  260. # reset AR command flags
  261. env['ARCOM'] = '$AR --create $TARGET $SOURCES'
  262. env['LIBPREFIX'] = ''
  263. env['LIBSUFFIX'] = '.lib'
  264. env['LIBLINKPREFIX'] = ''
  265. env['LIBLINKSUFFIX'] = '.lib'
  266. env['LIBDIRPREFIX'] = '--userlibpath '
  267. elif rtconfig.PLATFORM == 'iar':
  268. env['LIBPREFIX'] = ''
  269. env['LIBSUFFIX'] = '.a'
  270. env['LIBLINKPREFIX'] = ''
  271. env['LIBLINKSUFFIX'] = '.a'
  272. env['LIBDIRPREFIX'] = '--search '
  273. # patch for win32 spawn
  274. if env['PLATFORM'] == 'win32':
  275. win32_spawn = Win32Spawn()
  276. win32_spawn.env = env
  277. env['SPAWN'] = win32_spawn.spawn
  278. if env['PLATFORM'] == 'win32':
  279. os.environ['PATH'] = rtconfig.EXEC_PATH + ";" + os.environ['PATH']
  280. else:
  281. os.environ['PATH'] = rtconfig.EXEC_PATH + ":" + os.environ['PATH']
  282. # add program path
  283. env.PrependENVPath('PATH', os.environ['PATH'])
  284. # add rtconfig.h/BSP path into Kernel group
  285. DefineGroup("Kernel", [], [], CPPPATH=[str(Dir('#').abspath)])
  286. # add library build action
  287. act = SCons.Action.Action(BuildLibInstallAction, 'Install compiled library... $TARGET')
  288. bld = Builder(action = act)
  289. Env.Append(BUILDERS = {'BuildLib': bld})
  290. # parse rtconfig.h to get used component
  291. PreProcessor = PatchedPreProcessor()
  292. f = open('rtconfig.h', 'r')
  293. contents = f.read()
  294. f.close()
  295. PreProcessor.process_contents(contents)
  296. BuildOptions = PreProcessor.cpp_namespace
  297. if GetOption('clang-analyzer'):
  298. # perform what scan-build does
  299. env.Replace(
  300. CC = 'ccc-analyzer',
  301. CXX = 'c++-analyzer',
  302. # skip as and link
  303. LINK = 'true',
  304. AS = 'true',)
  305. env["ENV"].update(x for x in os.environ.items() if x[0].startswith("CCC_"))
  306. # only check, don't compile. ccc-analyzer use CCC_CC as the CC.
  307. # fsyntax-only will give us some additional warning messages
  308. env['ENV']['CCC_CC'] = 'clang'
  309. env.Append(CFLAGS=['-fsyntax-only', '-Wall', '-Wno-invalid-source-encoding'])
  310. env['ENV']['CCC_CXX'] = 'clang++'
  311. env.Append(CXXFLAGS=['-fsyntax-only', '-Wall', '-Wno-invalid-source-encoding'])
  312. # remove the POST_ACTION as it will cause meaningless errors(file not
  313. # found or something like that).
  314. rtconfig.POST_ACTION = ''
  315. # generate cconfig.h file
  316. GenCconfigFile(env, BuildOptions)
  317. # auto append '_REENT_SMALL' when using newlib 'nano.specs' option
  318. if rtconfig.PLATFORM == 'gcc' and str(env['LINKFLAGS']).find('nano.specs') != -1:
  319. env.AppendUnique(CPPDEFINES = ['_REENT_SMALL'])
  320. if GetOption('genconfig'):
  321. from genconf import genconfig
  322. genconfig()
  323. exit(0)
  324. if GetOption('stackanalysis'):
  325. from WCS import ThreadStackStaticAnalysis
  326. ThreadStackStaticAnalysis(Env)
  327. exit(0)
  328. if env['PLATFORM'] != 'win32':
  329. AddOption('--menuconfig',
  330. dest = 'menuconfig',
  331. action = 'store_true',
  332. default = False,
  333. help = 'make menuconfig for RT-Thread BSP')
  334. if GetOption('menuconfig'):
  335. from menuconfig import menuconfig
  336. menuconfig(Rtt_Root)
  337. exit(0)
  338. AddOption('--pyconfig',
  339. dest = 'pyconfig',
  340. action = 'store_true',
  341. default = False,
  342. help = 'Python GUI menuconfig for RT-Thread BSP')
  343. AddOption('--pyconfig-silent',
  344. dest = 'pyconfig_silent',
  345. action = 'store_true',
  346. default = False,
  347. help = 'Don`t show pyconfig window')
  348. if GetOption('pyconfig_silent'):
  349. from menuconfig import guiconfig_silent
  350. guiconfig_silent(Rtt_Root)
  351. exit(0)
  352. elif GetOption('pyconfig'):
  353. from menuconfig import guiconfig
  354. guiconfig(Rtt_Root)
  355. exit(0)
  356. configfn = GetOption('useconfig')
  357. if configfn:
  358. from menuconfig import mk_rtconfig
  359. mk_rtconfig(configfn)
  360. exit(0)
  361. if not GetOption('verbose'):
  362. # override the default verbose command string
  363. env.Replace(
  364. ARCOMSTR = 'AR $TARGET',
  365. ASCOMSTR = 'AS $TARGET',
  366. ASPPCOMSTR = 'AS $TARGET',
  367. CCCOMSTR = 'CC $TARGET',
  368. CXXCOMSTR = 'CXX $TARGET',
  369. LINKCOMSTR = 'LINK $TARGET'
  370. )
  371. # fix the linker for C++
  372. if GetDepend('RT_USING_CPLUSPLUS'):
  373. if env['LINK'].find('gcc') != -1:
  374. env['LINK'] = env['LINK'].replace('gcc', 'g++')
  375. # we need to seperate the variant_dir for BSPs and the kernels. BSPs could
  376. # have their own components etc. If they point to the same folder, SCons
  377. # would find the wrong source code to compile.
  378. bsp_vdir = 'build'
  379. kernel_vdir = 'build/kernel'
  380. # board build script
  381. objs = SConscript('SConscript', variant_dir=bsp_vdir, duplicate=0)
  382. # include kernel
  383. objs.extend(SConscript(Rtt_Root + '/src/SConscript', variant_dir=kernel_vdir + '/src', duplicate=0))
  384. # include libcpu
  385. if not has_libcpu:
  386. objs.extend(SConscript(Rtt_Root + '/libcpu/SConscript',
  387. variant_dir=kernel_vdir + '/libcpu', duplicate=0))
  388. # include components
  389. objs.extend(SConscript(Rtt_Root + '/components/SConscript',
  390. variant_dir=kernel_vdir + '/components',
  391. duplicate=0,
  392. exports='remove_components'))
  393. return objs
  394. def PrepareModuleBuilding(env, root_directory, bsp_directory):
  395. import rtconfig
  396. global BuildOptions
  397. global Env
  398. global Rtt_Root
  399. # patch for win32 spawn
  400. if env['PLATFORM'] == 'win32':
  401. win32_spawn = Win32Spawn()
  402. win32_spawn.env = env
  403. env['SPAWN'] = win32_spawn.spawn
  404. Env = env
  405. Rtt_Root = root_directory
  406. # parse bsp rtconfig.h to get used component
  407. PreProcessor = PatchedPreProcessor()
  408. f = open(bsp_directory + '/rtconfig.h', 'r')
  409. contents = f.read()
  410. f.close()
  411. PreProcessor.process_contents(contents)
  412. BuildOptions = PreProcessor.cpp_namespace
  413. # add build/clean library option for library checking
  414. AddOption('--buildlib',
  415. dest='buildlib',
  416. type='string',
  417. help='building library of a component')
  418. AddOption('--cleanlib',
  419. dest='cleanlib',
  420. action='store_true',
  421. default=False,
  422. help='clean up the library by --buildlib')
  423. # add program path
  424. env.PrependENVPath('PATH', rtconfig.EXEC_PATH)
  425. def GetConfigValue(name):
  426. assert type(name) == str, 'GetConfigValue: only string parameter is valid'
  427. try:
  428. return BuildOptions[name]
  429. except:
  430. return ''
  431. def GetDepend(depend):
  432. building = True
  433. if type(depend) == type('str'):
  434. if not depend in BuildOptions or BuildOptions[depend] == 0:
  435. building = False
  436. elif BuildOptions[depend] != '':
  437. return BuildOptions[depend]
  438. return building
  439. # for list type depend
  440. for item in depend:
  441. if item != '':
  442. if not item in BuildOptions or BuildOptions[item] == 0:
  443. building = False
  444. return building
  445. def LocalOptions(config_filename):
  446. from SCons.Script import SCons
  447. # parse wiced_config.h to get used component
  448. PreProcessor = SCons.cpp.PreProcessor()
  449. f = open(config_filename, 'r')
  450. contents = f.read()
  451. f.close()
  452. PreProcessor.process_contents(contents)
  453. local_options = PreProcessor.cpp_namespace
  454. return local_options
  455. def GetLocalDepend(options, depend):
  456. building = True
  457. if type(depend) == type('str'):
  458. if not depend in options or options[depend] == 0:
  459. building = False
  460. elif options[depend] != '':
  461. return options[depend]
  462. return building
  463. # for list type depend
  464. for item in depend:
  465. if item != '':
  466. if not item in options or options[item] == 0:
  467. building = False
  468. return building
  469. def AddDepend(option):
  470. BuildOptions[option] = 1
  471. def MergeGroup(src_group, group):
  472. src_group['src'] = src_group['src'] + group['src']
  473. if 'CCFLAGS' in group:
  474. if 'CCFLAGS' in src_group:
  475. src_group['CCFLAGS'] = src_group['CCFLAGS'] + group['CCFLAGS']
  476. else:
  477. src_group['CCFLAGS'] = group['CCFLAGS']
  478. if 'CPPPATH' in group:
  479. if 'CPPPATH' in src_group:
  480. src_group['CPPPATH'] = src_group['CPPPATH'] + group['CPPPATH']
  481. else:
  482. src_group['CPPPATH'] = group['CPPPATH']
  483. if 'CPPDEFINES' in group:
  484. if 'CPPDEFINES' in src_group:
  485. src_group['CPPDEFINES'] = src_group['CPPDEFINES'] + group['CPPDEFINES']
  486. else:
  487. src_group['CPPDEFINES'] = group['CPPDEFINES']
  488. if 'ASFLAGS' in group:
  489. if 'ASFLAGS' in src_group:
  490. src_group['ASFLAGS'] = src_group['ASFLAGS'] + group['ASFLAGS']
  491. else:
  492. src_group['ASFLAGS'] = group['ASFLAGS']
  493. # for local CCFLAGS/CPPPATH/CPPDEFINES
  494. if 'LOCAL_CCFLAGS' in group:
  495. if 'LOCAL_CCFLAGS' in src_group:
  496. src_group['LOCAL_CCFLAGS'] = src_group['LOCAL_CCFLAGS'] + group['LOCAL_CCFLAGS']
  497. else:
  498. src_group['LOCAL_CCFLAGS'] = group['LOCAL_CCFLAGS']
  499. if 'LOCAL_CPPPATH' in group:
  500. if 'LOCAL_CPPPATH' in src_group:
  501. src_group['LOCAL_CPPPATH'] = src_group['LOCAL_CPPPATH'] + group['LOCAL_CPPPATH']
  502. else:
  503. src_group['LOCAL_CPPPATH'] = group['LOCAL_CPPPATH']
  504. if 'LOCAL_CPPDEFINES' in group:
  505. if 'LOCAL_CPPDEFINES' in src_group:
  506. src_group['LOCAL_CPPDEFINES'] = src_group['LOCAL_CPPDEFINES'] + group['LOCAL_CPPDEFINES']
  507. else:
  508. src_group['LOCAL_CPPDEFINES'] = group['LOCAL_CPPDEFINES']
  509. if 'LINKFLAGS' in group:
  510. if 'LINKFLAGS' in src_group:
  511. src_group['LINKFLAGS'] = src_group['LINKFLAGS'] + group['LINKFLAGS']
  512. else:
  513. src_group['LINKFLAGS'] = group['LINKFLAGS']
  514. if 'LIBS' in group:
  515. if 'LIBS' in src_group:
  516. src_group['LIBS'] = src_group['LIBS'] + group['LIBS']
  517. else:
  518. src_group['LIBS'] = group['LIBS']
  519. if 'LIBPATH' in group:
  520. if 'LIBPATH' in src_group:
  521. src_group['LIBPATH'] = src_group['LIBPATH'] + group['LIBPATH']
  522. else:
  523. src_group['LIBPATH'] = group['LIBPATH']
  524. if 'LOCAL_ASFLAGS' in group:
  525. if 'LOCAL_ASFLAGS' in src_group:
  526. src_group['LOCAL_ASFLAGS'] = src_group['LOCAL_ASFLAGS'] + group['LOCAL_ASFLAGS']
  527. else:
  528. src_group['LOCAL_ASFLAGS'] = group['LOCAL_ASFLAGS']
  529. def DefineGroup(name, src, depend, **parameters):
  530. global Env
  531. if not GetDepend(depend):
  532. return []
  533. # find exist group and get path of group
  534. group_path = ''
  535. for g in Projects:
  536. if g['name'] == name:
  537. group_path = g['path']
  538. if group_path == '':
  539. group_path = GetCurrentDir()
  540. group = parameters
  541. group['name'] = name
  542. group['path'] = group_path
  543. if type(src) == type([]):
  544. group['src'] = File(src)
  545. else:
  546. group['src'] = src
  547. if 'CCFLAGS' in group:
  548. Env.AppendUnique(CCFLAGS = group['CCFLAGS'])
  549. if 'CPPPATH' in group:
  550. paths = []
  551. for item in group['CPPPATH']:
  552. paths.append(os.path.abspath(item))
  553. group['CPPPATH'] = paths
  554. Env.AppendUnique(CPPPATH = group['CPPPATH'])
  555. if 'CPPDEFINES' in group:
  556. Env.AppendUnique(CPPDEFINES = group['CPPDEFINES'])
  557. if 'LINKFLAGS' in group:
  558. Env.AppendUnique(LINKFLAGS = group['LINKFLAGS'])
  559. if 'ASFLAGS' in group:
  560. Env.AppendUnique(ASFLAGS = group['ASFLAGS'])
  561. if 'LOCAL_CPPPATH' in group:
  562. paths = []
  563. for item in group['LOCAL_CPPPATH']:
  564. paths.append(os.path.abspath(item))
  565. group['LOCAL_CPPPATH'] = paths
  566. import rtconfig
  567. if rtconfig.PLATFORM == 'gcc':
  568. if 'CCFLAGS' in group:
  569. group['CCFLAGS'] = utils.GCCC99Patch(group['CCFLAGS'])
  570. if 'LOCAL_CCFLAGS' in group:
  571. group['LOCAL_CCFLAGS'] = utils.GCCC99Patch(group['LOCAL_CCFLAGS'])
  572. # check whether to clean up library
  573. if GetOption('cleanlib') and os.path.exists(os.path.join(group['path'], GroupLibFullName(name, Env))):
  574. if group['src'] != []:
  575. print ('Remove library:'+ GroupLibFullName(name, Env))
  576. fn = os.path.join(group['path'], GroupLibFullName(name, Env))
  577. if os.path.exists(fn):
  578. os.unlink(fn)
  579. if 'LIBS' in group:
  580. Env.AppendUnique(LIBS = group['LIBS'])
  581. if 'LIBPATH' in group:
  582. Env.AppendUnique(LIBPATH = group['LIBPATH'])
  583. # check whether to build group library
  584. if 'LIBRARY' in group:
  585. objs = Env.Library(name, group['src'])
  586. else:
  587. # only add source
  588. objs = group['src']
  589. # merge group
  590. for g in Projects:
  591. if g['name'] == name:
  592. # merge to this group
  593. MergeGroup(g, group)
  594. return objs
  595. def PriorityInsertGroup(groups, group):
  596. length = len(groups)
  597. for i in range(0, length):
  598. if operator.gt(groups[i]['name'].lower(), group['name'].lower()):
  599. groups.insert(i, group)
  600. return
  601. groups.append(group)
  602. # add a new group
  603. PriorityInsertGroup(Projects, group)
  604. return objs
  605. def GetCurrentDir():
  606. conscript = File('SConscript')
  607. fn = conscript.rfile()
  608. name = fn.name
  609. path = os.path.dirname(fn.abspath)
  610. return path
  611. PREBUILDING = []
  612. def RegisterPreBuildingAction(act):
  613. global PREBUILDING
  614. assert callable(act), 'Could only register callable objects. %s received' % repr(act)
  615. PREBUILDING.append(act)
  616. def PreBuilding():
  617. global PREBUILDING
  618. for a in PREBUILDING:
  619. a()
  620. def GroupLibName(name, env):
  621. import rtconfig
  622. if rtconfig.PLATFORM == 'armcc':
  623. return name + '_rvds'
  624. elif rtconfig.PLATFORM == 'gcc':
  625. return name + '_gcc'
  626. return name
  627. def GroupLibFullName(name, env):
  628. return env['LIBPREFIX'] + GroupLibName(name, env) + env['LIBSUFFIX']
  629. def BuildLibInstallAction(target, source, env):
  630. lib_name = GetOption('buildlib')
  631. for Group in Projects:
  632. if Group['name'] == lib_name:
  633. lib_name = GroupLibFullName(Group['name'], env)
  634. dst_name = os.path.join(Group['path'], lib_name)
  635. print ('Copy '+lib_name+' => ' +dst_name)
  636. do_copy_file(lib_name, dst_name)
  637. break
  638. def DoBuilding(target, objects):
  639. # merge all objects into one list
  640. def one_list(l):
  641. lst = []
  642. for item in l:
  643. if type(item) == type([]):
  644. lst += one_list(item)
  645. else:
  646. lst.append(item)
  647. return lst
  648. # handle local group
  649. def local_group(group, objects):
  650. if 'LOCAL_CCFLAGS' in group or 'LOCAL_CPPPATH' in group or 'LOCAL_CPPDEFINES' in group or 'LOCAL_ASFLAGS' in group:
  651. CCFLAGS = Env.get('CCFLAGS', '') + group.get('LOCAL_CCFLAGS', '')
  652. CPPPATH = Env.get('CPPPATH', ['']) + group.get('LOCAL_CPPPATH', [''])
  653. CPPDEFINES = Env.get('CPPDEFINES', ['']) + group.get('LOCAL_CPPDEFINES', [''])
  654. ASFLAGS = Env.get('ASFLAGS', '') + group.get('LOCAL_ASFLAGS', '')
  655. for source in group['src']:
  656. objects.append(Env.Object(source, CCFLAGS = CCFLAGS, ASFLAGS = ASFLAGS,
  657. CPPPATH = CPPPATH, CPPDEFINES = CPPDEFINES))
  658. return True
  659. return False
  660. objects = one_list(objects)
  661. program = None
  662. # check whether special buildlib option
  663. lib_name = GetOption('buildlib')
  664. if lib_name:
  665. objects = [] # remove all of objects
  666. # build library with special component
  667. for Group in Projects:
  668. if Group['name'] == lib_name:
  669. lib_name = GroupLibName(Group['name'], Env)
  670. if not local_group(Group, objects):
  671. objects = Env.Object(Group['src'])
  672. program = Env.Library(lib_name, objects)
  673. # add library copy action
  674. Env.BuildLib(lib_name, program)
  675. break
  676. else:
  677. # remove source files with local flags setting
  678. for group in Projects:
  679. if 'LOCAL_CCFLAGS' in group or 'LOCAL_CPPPATH' in group or 'LOCAL_CPPDEFINES' in group:
  680. for source in group['src']:
  681. for obj in objects:
  682. if source.abspath == obj.abspath or (len(obj.sources) > 0 and source.abspath == obj.sources[0].abspath):
  683. objects.remove(obj)
  684. # re-add the source files to the objects
  685. for group in Projects:
  686. local_group(group, objects)
  687. program = Env.Program(target, objects)
  688. EndBuilding(target, program)
  689. def GenTargetProject(program = None):
  690. if GetOption('target') == 'mdk':
  691. from keil import MDKProject
  692. from keil import MDK4Project
  693. from keil import MDK5Project
  694. template = os.path.isfile('template.Uv2')
  695. if template:
  696. MDKProject('project.Uv2', Projects)
  697. else:
  698. template = os.path.isfile('template.uvproj')
  699. if template:
  700. MDK4Project('project.uvproj', Projects)
  701. else:
  702. template = os.path.isfile('template.uvprojx')
  703. if template:
  704. MDK5Project('project.uvprojx', Projects)
  705. else:
  706. print ('No template project file found.')
  707. if GetOption('target') == 'mdk4':
  708. from keil import MDK4Project
  709. MDK4Project('project.uvproj', Projects)
  710. if GetOption('target') == 'mdk5':
  711. from keil import MDK5Project
  712. MDK5Project('project.uvprojx', Projects)
  713. if GetOption('target') == 'iar':
  714. from iar import IARProject
  715. IARProject('project.ewp', Projects)
  716. if GetOption('target') == 'vs':
  717. from vs import VSProject
  718. VSProject('project.vcproj', Projects, program)
  719. if GetOption('target') == 'vs2012':
  720. from vs2012 import VS2012Project
  721. VS2012Project('project.vcxproj', Projects, program)
  722. if GetOption('target') == 'cb':
  723. from codeblocks import CBProject
  724. CBProject('project.cbp', Projects, program)
  725. if GetOption('target') == 'ua':
  726. from ua import PrepareUA
  727. PrepareUA(Projects, Rtt_Root, str(Dir('#')))
  728. if GetOption('target') == 'vsc':
  729. from vsc import GenerateVSCode
  730. GenerateVSCode(Env)
  731. if GetOption('target') == 'cdk':
  732. from cdk import CDKProject
  733. CDKProject('project.cdkproj', Projects)
  734. if GetOption('target') == 'ses':
  735. from ses import SESProject
  736. SESProject(Env)
  737. if GetOption('target') == 'makefile':
  738. from makefile import TargetMakefile
  739. TargetMakefile(Env)
  740. if GetOption('target') == 'eclipse':
  741. from eclipse import TargetEclipse
  742. TargetEclipse(Env, GetOption('reset-project-config'), GetOption('project-name'))
  743. if GetOption('target') == 'codelite':
  744. from codelite import TargetCodelite
  745. TargetCodelite(Projects, program)
  746. def EndBuilding(target, program = None):
  747. import rtconfig
  748. need_exit = False
  749. Env['target'] = program
  750. Env['project'] = Projects
  751. if hasattr(rtconfig, 'BSP_LIBRARY_TYPE'):
  752. Env['bsp_lib_type'] = rtconfig.BSP_LIBRARY_TYPE
  753. if hasattr(rtconfig, 'dist_handle'):
  754. Env['dist_handle'] = rtconfig.dist_handle
  755. Env.AddPostAction(target, rtconfig.POST_ACTION)
  756. # Add addition clean files
  757. Clean(target, 'cconfig.h')
  758. Clean(target, 'rtua.py')
  759. Clean(target, 'rtua.pyc')
  760. if GetOption('target'):
  761. GenTargetProject(program)
  762. BSP_ROOT = Dir('#').abspath
  763. if GetOption('make-dist') and program != None:
  764. from mkdist import MkDist
  765. MkDist(program, BSP_ROOT, Rtt_Root, Env)
  766. if GetOption('make-dist-strip') and program != None:
  767. from mkdist import MkDist_Strip
  768. MkDist_Strip(program, BSP_ROOT, Rtt_Root, Env)
  769. need_exit = True
  770. if GetOption('make-dist-ide') and program != None:
  771. from mkdist import MkDist
  772. project_path = GetOption('project-path')
  773. project_name = GetOption('project-name')
  774. if not isinstance(project_path, str) or len(project_path) == 0 :
  775. print("\nwarning : --project-path=your_project_path parameter is required.")
  776. print("\nstop!")
  777. exit(0)
  778. if not isinstance(project_name, str) or len(project_name) == 0:
  779. print("\nwarning : --project-name=your_project_name parameter is required.")
  780. print("\nstop!")
  781. exit(0)
  782. rtt_ide = {'project_path' : project_path, 'project_name' : project_name}
  783. MkDist(program, BSP_ROOT, Rtt_Root, Env, rtt_ide)
  784. need_exit = True
  785. if GetOption('cscope'):
  786. from cscope import CscopeDatabase
  787. CscopeDatabase(Projects)
  788. if not GetOption('help') and not GetOption('target'):
  789. if not os.path.exists(rtconfig.EXEC_PATH):
  790. print ("Error: the toolchain path (" + rtconfig.EXEC_PATH + ") is not exist, please check 'EXEC_PATH' in path or rtconfig.py.")
  791. need_exit = True
  792. if need_exit:
  793. exit(0)
  794. def SrcRemove(src, remove):
  795. if not src:
  796. return
  797. src_bak = src[:]
  798. if type(remove) == type('str'):
  799. if os.path.isabs(remove):
  800. remove = os.path.relpath(remove, GetCurrentDir())
  801. remove = os.path.normpath(remove)
  802. for item in src_bak:
  803. if type(item) == type('str'):
  804. item_str = item
  805. else:
  806. item_str = item.rstr()
  807. if os.path.isabs(item_str):
  808. item_str = os.path.relpath(item_str, GetCurrentDir())
  809. item_str = os.path.normpath(item_str)
  810. if item_str == remove:
  811. src.remove(item)
  812. else:
  813. for remove_item in remove:
  814. remove_str = str(remove_item)
  815. if os.path.isabs(remove_str):
  816. remove_str = os.path.relpath(remove_str, GetCurrentDir())
  817. remove_str = os.path.normpath(remove_str)
  818. for item in src_bak:
  819. if type(item) == type('str'):
  820. item_str = item
  821. else:
  822. item_str = item.rstr()
  823. if os.path.isabs(item_str):
  824. item_str = os.path.relpath(item_str, GetCurrentDir())
  825. item_str = os.path.normpath(item_str)
  826. if item_str == remove_str:
  827. src.remove(item)
  828. def GetVersion():
  829. import SCons.cpp
  830. import string
  831. rtdef = os.path.join(Rtt_Root, 'include', 'rtdef.h')
  832. # parse rtdef.h to get RT-Thread version
  833. prepcessor = PatchedPreProcessor()
  834. f = open(rtdef, 'r')
  835. contents = f.read()
  836. f.close()
  837. prepcessor.process_contents(contents)
  838. def_ns = prepcessor.cpp_namespace
  839. version = int(filter(lambda ch: ch in '0123456789.', def_ns['RT_VERSION']))
  840. subversion = int(filter(lambda ch: ch in '0123456789.', def_ns['RT_SUBVERSION']))
  841. if 'RT_REVISION' in def_ns:
  842. revision = int(filter(lambda ch: ch in '0123456789.', def_ns['RT_REVISION']))
  843. return '%d.%d.%d' % (version, subversion, revision)
  844. return '0.%d.%d' % (version, subversion)
  845. def GlobSubDir(sub_dir, ext_name):
  846. import os
  847. import glob
  848. def glob_source(sub_dir, ext_name):
  849. list = os.listdir(sub_dir)
  850. src = glob.glob(os.path.join(sub_dir, ext_name))
  851. for item in list:
  852. full_subdir = os.path.join(sub_dir, item)
  853. if os.path.isdir(full_subdir):
  854. src += glob_source(full_subdir, ext_name)
  855. return src
  856. dst = []
  857. src = glob_source(sub_dir, ext_name)
  858. for item in src:
  859. dst.append(os.path.relpath(item, sub_dir))
  860. return dst
  861. def PackageSConscript(package):
  862. from package import BuildPackage
  863. return BuildPackage(package)