1. 01 3月, 2013 1 次提交
  2. 24 2月, 2013 1 次提交
    • G
      building.py: append messed up objs list, use extend to avoid that · c24c4f8e
      Grissiom 提交于
      The return type of SConscript is a subclass of UserList. We should use
      extend to keep the depth of the list is always 1 when concatenate
      SConscript return values. Thanks prife for making me realize that this
      is really a problem.
      
      Reported-and-Tested-by: prife
      c24c4f8e
  3. 21 2月, 2013 1 次提交
  4. 29 1月, 2013 1 次提交
  5. 19 1月, 2013 1 次提交
  6. 13 12月, 2012 1 次提交
  7. 01 12月, 2012 1 次提交
  8. 08 11月, 2012 1 次提交
  9. 05 11月, 2012 1 次提交
  10. 15 10月, 2012 1 次提交
    • C
      building.py: add RegisterPreBuildingAction · 66c5a05e
      chaos.proton@gmail.com 提交于
      One could register a callable object(normally a function) via RegisterPreBuildingAction in SConscript. It will be called when PreBuilding get invoked. PreBuilding should be called before the building procedure. It is currently used by RTGUI to generate the minimal perfect hash code when all the source files are scanned(i.e. just before building).
      
      Maybe we should invoke PreBuilding in DoBuilding.
      
      git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2353 bbd45198-f89e-11dd-88c7-29a3b14d5316
      66c5a05e
  11. 06 10月, 2012 2 次提交
  12. 05 10月, 2012 1 次提交
  13. 09 9月, 2012 1 次提交
  14. 22 8月, 2012 1 次提交
  15. 11 8月, 2012 1 次提交
  16. 01 8月, 2012 2 次提交
  17. 22 7月, 2012 1 次提交
    • C
      add "remove_components" feature · 8cf479ca
      chaos.proton@gmail.com 提交于
      If one do not want to use some components in the RTT_ROOT, it can pass a remove_components=['the_component'] parameter to PrepareBuilding. Sample code is:
      
      RTT_RTGUI = os.getenv('RTT_RTGUI')
      # if GUI dir is set to other place, don't use the one in RTT_ROOT
      if RTT_RTGUI:
          # prepare building environment
          objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=False, remove_components=['rtgui'])
          objs += SConscript(os.path.join(RTT_RTGUI, 'SConscript'))
      else:
          objs = PrepareBuilding(env, RTT_ROOT, has_libcpu=False)
      
      You can safely omit the parameter if you do not want to remove any components.
      
      git-svn-id: https://rt-thread.googlecode.com/svn/trunk@2227 bbd45198-f89e-11dd-88c7-29a3b14d5316
      8cf479ca
  18. 19 2月, 2012 2 次提交
  19. 17 2月, 2012 2 次提交
  20. 31 1月, 2012 1 次提交
  21. 10 12月, 2011 2 次提交
  22. 29 11月, 2011 1 次提交
  23. 09 11月, 2011 1 次提交
  24. 30 10月, 2011 1 次提交
  25. 04 10月, 2011 1 次提交
  26. 04 7月, 2011 2 次提交
  27. 01 7月, 2011 1 次提交
  28. 29 6月, 2011 2 次提交
  29. 24 6月, 2011 2 次提交
  30. 14 6月, 2011 1 次提交
  31. 10 6月, 2011 1 次提交
  32. 09 6月, 2011 1 次提交