ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/Development/ray/build_utils/load_plat.py
(Generate patch)

Comparing ray/build_utils/load_plat.py (file contents):
Revision 1.1 by schorsch, Tue Oct 21 19:27:28 2003 UTC vs.
Revision 1.14 by schorsch, Sun Mar 6 01:13:17 2016 UTC

# Line 1 | Line 1
1  
2   import os
3   import sys
4 < import string
4 > import platform
5   import ConfigParser
6  
7  
8   _platdir = 'platform'
9  
10  
11 < def POSIX_setup(env):
12 <    # common stuff for all posix systems
13 <    env['RAD_PROCESS'] = string.split('unix_process.c')
14 <
15 <
16 < def read_plat(env, fn):
17 <        cfig = ConfigParser.ConfigParser(env.Dictionary())
11 > def read_plat(env, args, fn):
12 >        envdict = env.Dictionary().copy()
13 >        # can't feed ConfigParser the original dict, because it also
14 >        # contains non-string values.
15 >        for k,v in envdict.items():
16 >                if not isinstance(v, str):
17 >                        del envdict[k]
18 >        cfig = ConfigParser.ConfigParser(envdict)
19          cfig.read(fn)
20 +        buildvars = [['CC',
21 +                        'TIFFINCLUDE', # where to find preinstalled tifflib headers
22 +                        'TIFFLIB',     # where to find a preinstalled tifflib library
23 +                        ], # replace
24 +                        ['CPPPATH', 'CPPDEFINES', 'CPPFLAGS', 'CCFLAGS',
25 +                        'LIBPATH', 'LINKFLAGS',
26 +                        'EZXML_CPPDEFINES', # build flags specific to ezxml.c
27 +                        ]] # append
28          vars = [
20                ['build',
21                        ['CC'], # replace
22                        ['CPPFLAGS', 'CCFLAGS', 'CPPPATH', 'LIBPATH']], # append
29                  ['install',
30                          ['RAD_BASEDIR', 'RAD_BINDIR', 'RAD_RLIBDIR', 'RAD_MANDIR'],
31                          []],
32                  ['code',
33 <                        ['RAD_SPEED'],
34 <                        ['RAD_COMPAT', 'RAD_MLIB', 'RAD_PROCESS']],
33 >                        [   # replace
34 >                        ],
35 >                        [   # append
36 >                        'RAD_COMPAT',     # theoretically obsolete (src/common/strcmp.c)
37 >                        'RAD_MATHCOMPAT', # erf.c floating point error function
38 >                        'RAD_ARGSCOMPAT', # fixargv0.c for Windows
39 >                        'RAD_NETCOMPAT',  # [win_]netproc.c for ranimate
40 >                        'RAD_MLIB',       # usually 'm', or any fastlib available
41 >                        'RAD_SOCKETLIB',  # ws_2_32 on Windows (VC links it automatically)
42 >                        'RAD_PROCESS',    # our process abstraction and win_popen()
43 >                        'RAD_PCALLS',     # more custom process abstraction
44 >                        ]],
45          ]
46 +        if args.get('RAD_DEBUG',0):
47 +                vars.insert(0, ['debug'] + buildvars)
48 +        else: vars.insert(0, ['build'] + buildvars)
49          for section in vars:
50                  if cfig.has_section(section[0]):
51 <                        for p in section[1]:
51 >                        for p in section[1]: # single items to replace
52                                  try: v = cfig.get(section[0], p)
53                                  except ConfigParser.NoOptionError: continue
54                                  env[p] = v
55                                  #print '%s: %s' % (p, env[p])
56 <                        for p in section[2]:
56 >                        for p in section[2]: # multiple items to append
57                                  try: v = cfig.get(section[0], p)
58                                  except ConfigParser.NoOptionError: continue
59 <                                apply(env.Append,[],{p:string.split(v)})
41 <                                #print '%s: %s' % (p, env[p])
59 >                                apply(env.Append,[],{p:env.Split(v)})
60          # XXX Check that basedir exists.
61          for k in ['RAD_BINDIR', 'RAD_RLIBDIR', 'RAD_MANDIR']:
62                  if (env.has_key('RAD_BASEDIR') and env.has_key(k)
# Line 46 | Line 64 | def read_plat(env, fn):
64                          env[k] = os.path.join(env['RAD_BASEDIR'],env[k])
65  
66  
67 < def load_plat(env, platform=None):
68 <        if os.name == 'posix':
51 <                POSIX_setup(env)
52 <        if platform == None: # override
67 > def load_plat(env, args, ourplat=None):
68 >        if ourplat == None: # override
69                  p = sys.platform
70 <        else: p = platform
70 >        else: p = ourplat
71 > #       if p == 'win32' and platform.architecture()[0] == '64bit':
72 > #               p = 'win64'
73 >        if p == 'win32' and 'gcc' in env['TOOLS']:
74 >                # we don't really want to know this here...
75 >                p = 'mingw'
76          pl = []
77          print 'Detected platform "%s" (%s).' % (sys.platform, os.name)
78          for i in [len(p), -1, -2]:
79                  pfn = os.path.join(_platdir, p[:i] + '_custom.cfg')
80                  if os.path.isfile(pfn):
81                          print 'Reading configuration "%s"' % pfn
82 <                        read_plat(env, pfn)
82 >                        read_plat(env, args, pfn)
83                          return 1
84                  pfn = os.path.join(_platdir, p[:i] + '.cfg')
85                  if os.path.isfile(pfn):
86                          print 'Reading configuration "%s"' % pfn
87 <                        read_plat(env, pfn)
87 >                        read_plat(env, args, pfn)
88                          return 1
89                  
90          if os.name == 'posix':
91                  pfn = os.path.join(_platdir, 'posix.cfg')
92                  if os.path.isfile(pfn):
93                          print 'Reading generic configuration "%s".' % pfn
94 <                        read_plat(env, pfn)
94 >                        read_plat(env, args, pfn)
95                          return 1
96  
97          print 'Platform "%s/%s" not supported yet' % (os.name, sys.platform)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines