/[escript]/trunk/bruce/SConstruct
ViewVC logotype

Contents of /trunk/bruce/SConstruct

Parent Directory Parent Directory | Revision Log Revision Log


Revision 246 - (show annotations)
Tue Nov 29 04:27:00 2005 UTC (17 years, 3 months ago) by jgs
File size: 1934 byte(s)
allow compile options to be loaded from a config
file specified on the command line to scons

1 # Scons configuration file for bruce
2
3 import os
4 import sys
5
6 #
7 # ensure correct versions of python and scons
8
9 EnsurePythonVersion(2,3)
10 EnsureSConsVersion(0,96)
11
12 #
13 # set appropriate defaults for configuration variables
14
15 esysroot = Dir('#..')
16 libinstall = None
17 dodebug = 0
18 usegcc = 0
19 options = None
20
21 #
22 # import configuration variables passed in from
23 # calling SConscript (if any)
24
25 Import('*')
26
27 #
28 # retreive command-line arguments if any
29
30 if ARGUMENTS.get('libinstall',0):
31 libinstall = ARGUMENTS.get('libinstall',0)
32 Export(["libinstall"])
33
34 if ARGUMENTS.get('debug',0):
35 dodebug = 1
36
37 if ARGUMENTS.get('usegcc',0):
38 usegcc = 1
39
40 if ARGUMENTS.get('options',0):
41 options = ARGUMENTS.get('options',0)
42
43 #
44 # determine platform
45
46 env = Environment(ENV = os.environ)
47 platform = env['PLATFORM']
48
49 #
50 # determine hostname
51
52 hostname = os.environ['HOSTNAME']
53
54 #
55 # export esysroot
56
57 Export(["esysroot"])
58
59 #
60 # set and export library directory
61
62 libdir = Dir(str(esysroot) + '/bruce/lib')
63 Export(["libdir"])
64
65 #
66 # load and export configuration settings
67
68 options_dir = str(esysroot) + '/scons'
69 sys.path.append(options_dir)
70
71 if hostname=='ess':
72 from ess_options import *
73
74 if usegcc==1:
75 from gcc_options import *
76
77 if options!=None:
78 exec "from " + options + " import *"
79
80 if dodebug==1:
81 cxx_flags=cxx_flags_debug
82
83 Export(["python_path"])
84 Export(["boost_path"])
85 Export(["cxx"])
86 Export(["cxx_flags"])
87
88 #
89 # print out build configuration for this module
90
91 print "############################################"
92 print "Build configuration for module: bruce"
93 print " dodebug: ", dodebug
94 print " usegcc: ", usegcc
95 print " cxx: ", cxx
96 print " platform: ", platform
97 print " hostname: ", hostname
98 print " libinstall: ", libinstall
99 print "############################################"
100
101 #
102 # call the SConscript to do the actual build
103
104 SConscript('src/Bruce/SConscript', src_dir='src/Bruce', build_dir='obj', duplicate=0)

  ViewVC Help
Powered by ViewVC 1.1.26