cfg_gnu.py 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. #
  2. # cfg_gnu.py - GNU target configurator
  3. #
  4. # Copyright (C) 2008-2009 Teluu Inc. (http://www.teluu.com)
  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
  17. # along with this program; if not, write to the Free Software
  18. # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. #
  20. import builder
  21. import os
  22. import sys
  23. # Each configurator must export this function
  24. def create_builder(args):
  25. usage = """\
  26. Usage:
  27. main.py cfg_gnu [-h|--help] [cfg_site]
  28. Arguments:
  29. cfg_site: site configuration module. If not specified, "cfg_site"
  30. is implied
  31. -h, --help Show this help screen
  32. """
  33. # (optional) args format:
  34. # site configuration module. If not specified, "cfg_site" is implied
  35. cfg_site = "cfg_site"
  36. for arg in args:
  37. if arg=="-h" or arg=="--help":
  38. print usage
  39. sys.exit(0)
  40. elif arg[0]=="-":
  41. print usage
  42. sys.exit(1)
  43. else:
  44. cfg_site = arg
  45. if os.access(cfg_site+".py", os.F_OK) == False:
  46. print "Error: file '%s.py' doesn't exist." % (cfg_site)
  47. sys.exit(1)
  48. cfg_site = __import__(cfg_site)
  49. test_cfg = builder.BaseConfig(cfg_site.BASE_DIR, \
  50. cfg_site.URL, \
  51. cfg_site.SITE_NAME, \
  52. cfg_site.GROUP, \
  53. cfg_site.OPTIONS)
  54. config_site = "#define PJ_TODO(x)\n" + cfg_site.CONFIG_SITE
  55. user_mak = "export CFLAGS+=-Wall\n" + cfg_site.USER_MAK
  56. builders = [
  57. builder.GNUTestBuilder(test_cfg, build_config_name="default",
  58. user_mak=user_mak,
  59. config_site=config_site,
  60. exclude=cfg_site.EXCLUDE,
  61. not_exclude=cfg_site.NOT_EXCLUDE)
  62. ]
  63. return builders