blob: 8411b654a64dac30a0762b2487d51d3ace7a2d17 [file] [log] [blame]
Benny Prijono9be224f2008-12-29 17:57:13 +00001#
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#
Benny Prijono49048d92008-12-29 14:56:32 +000020import builder
21import os
22import sys
23
24# Each configurator must export this function
25def create_builder(args):
Benny Prijonofee946b2009-01-01 00:11:17 +000026 usage = """\
27Usage:
28 main.py cfg_gnu [-h|--help] [cfg_site]
29
30Arguments:
31 cfg_site: site configuration module. If not specified, "cfg_site"
32 is implied
33 -h, --help Show this help screen
34
35"""
Benny Prijono49048d92008-12-29 14:56:32 +000036 # (optional) args format:
37 # site configuration module. If not specified, "cfg_site" is implied
38
Benny Prijonofee946b2009-01-01 00:11:17 +000039 cfg_site = "cfg_site"
40
41 for arg in args:
42 if arg=="-h" or arg=="--help":
43 print usage
44 sys.exit(0)
45 elif arg[0]=="-":
46 print usage
47 sys.exit(1)
48 else:
49 cfg_site = arg
50
51 if os.access(cfg_site+".py", os.F_OK) == False:
52 print "Error: file '%s.py' doesn't exist." % (cfg_site)
Benny Prijono9be224f2008-12-29 17:57:13 +000053 sys.exit(1)
Benny Prijono49048d92008-12-29 14:56:32 +000054
Benny Prijonofee946b2009-01-01 00:11:17 +000055 cfg_site = __import__(cfg_site)
Benny Prijono49048d92008-12-29 14:56:32 +000056 test_cfg = builder.BaseConfig(cfg_site.BASE_DIR, \
57 cfg_site.URL, \
58 cfg_site.SITE_NAME, \
59 cfg_site.GROUP, \
60 cfg_site.OPTIONS)
61
Benny Prijonod5962672009-01-02 18:15:07 +000062 config_site = "#define PJ_TODO(x)\n" + cfg_site.CONFIG_SITE
63 user_mak = "export CFLAGS+=-Wall\n" + cfg_site.USER_MAK
64
Benny Prijono49048d92008-12-29 14:56:32 +000065 builders = [
66 builder.GNUTestBuilder(test_cfg, build_config_name="default",
Benny Prijonod5962672009-01-02 18:15:07 +000067 user_mak=user_mak,
68 config_site=config_site,
Benny Prijono49048d92008-12-29 14:56:32 +000069 exclude=cfg_site.EXCLUDE,
70 not_exclude=cfg_site.NOT_EXCLUDE)
71 ]
72
73 return builders