| 13 |
|
env['RAD_PROCESS'] = string.split('unix_process.c') |
| 14 |
|
|
| 15 |
|
|
| 16 |
< |
def read_plat(env, fn): |
| 16 |
> |
def read_plat(env, args, fn): |
| 17 |
|
cfig = ConfigParser.ConfigParser(env.Dictionary()) |
| 18 |
|
cfig.read(fn) |
| 19 |
+ |
buildvars = [['CC'], # replace |
| 20 |
+ |
['CPPPATH','CPPFLAGS','CCFLAGS','LIBPATH','LINKFLAGS']] # append |
| 21 |
|
vars = [ |
| 20 |
– |
['build', |
| 21 |
– |
['CC'], # replace |
| 22 |
– |
['CPPFLAGS', 'CCFLAGS', 'CPPPATH', 'LIBPATH']], # append |
| 22 |
|
['install', |
| 23 |
|
['RAD_BASEDIR', 'RAD_BINDIR', 'RAD_RLIBDIR', 'RAD_MANDIR'], |
| 24 |
|
[]], |
| 25 |
|
['code', |
| 26 |
|
['RAD_SPEED'], |
| 27 |
< |
['RAD_COMPAT', 'RAD_MLIB', 'RAD_PROCESS']], |
| 27 |
> |
['RAD_COMPAT', 'RAD_MEMCOMPAT', 'RAD_MATHCOMPAT', 'RAD_ARGSCOMPAT', |
| 28 |
> |
'RAD_MLIB', 'RAD_PROCESS']], |
| 29 |
|
] |
| 30 |
+ |
if args.get('RAD_DEBUG',0): |
| 31 |
+ |
vars.insert(0, ['debug'] + buildvars) |
| 32 |
+ |
else: vars.insert(0, ['build'] + buildvars) |
| 33 |
|
for section in vars: |
| 34 |
|
if cfig.has_section(section[0]): |
| 35 |
|
for p in section[1]: |
| 49 |
|
env[k] = os.path.join(env['RAD_BASEDIR'],env[k]) |
| 50 |
|
|
| 51 |
|
|
| 52 |
< |
def load_plat(env, platform=None): |
| 52 |
> |
def load_plat(env, args, platform=None): |
| 53 |
|
if os.name == 'posix': |
| 54 |
|
POSIX_setup(env) |
| 55 |
|
if platform == None: # override |
| 61 |
|
pfn = os.path.join(_platdir, p[:i] + '_custom.cfg') |
| 62 |
|
if os.path.isfile(pfn): |
| 63 |
|
print 'Reading configuration "%s"' % pfn |
| 64 |
< |
read_plat(env, pfn) |
| 64 |
> |
read_plat(env, args, pfn) |
| 65 |
|
return 1 |
| 66 |
|
pfn = os.path.join(_platdir, p[:i] + '.cfg') |
| 67 |
|
if os.path.isfile(pfn): |
| 68 |
|
print 'Reading configuration "%s"' % pfn |
| 69 |
< |
read_plat(env, pfn) |
| 69 |
> |
read_plat(env, args, pfn) |
| 70 |
|
return 1 |
| 71 |
|
|
| 72 |
|
if os.name == 'posix': |
| 73 |
|
pfn = os.path.join(_platdir, 'posix.cfg') |
| 74 |
|
if os.path.isfile(pfn): |
| 75 |
|
print 'Reading generic configuration "%s".' % pfn |
| 76 |
< |
read_plat(env, pfn) |
| 76 |
> |
read_plat(env, args, pfn) |
| 77 |
|
return 1 |
| 78 |
|
|
| 79 |
|
print 'Platform "%s/%s" not supported yet' % (os.name, sys.platform) |