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

Contents of /trunk/finley/SConstruct

Parent Directory Parent Directory | Revision Log Revision Log


Revision 224 - (show annotations)
Fri Nov 25 00:33:27 2005 UTC (17 years, 4 months ago) by jgs
File size: 1933 byte(s)
implement switching of debug compiler options based on command line flag 'debug'
1 # Scons configuration file for finley
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
20 #
21 # import configuration variables passed in from
22 # calling SConscript (if any)
23
24 Import('*')
25
26 #
27 # retreive command-line arguments if any
28
29 if ARGUMENTS.get('libinstall',0):
30 libinstall = ARGUMENTS.get('libinstall',0)
31 Export(["libinstall"])
32
33 if ARGUMENTS.get('debug',0):
34 dodebug = 1
35
36 if ARGUMENTS.get('usegcc',0):
37 usegcc = 1
38
39 #
40 # determine platform
41
42 env = Environment(ENV = os.environ)
43 platform = env['PLATFORM']
44
45 #
46 # determine hostname
47
48 hostname = os.environ['HOSTNAME']
49
50 #
51 # export esysroot
52
53 Export(["esysroot"])
54
55 #
56 # set and export library directory
57
58 libdir = Dir(str(esysroot) + '/finley/lib')
59 Export(["libdir"])
60
61 #
62 # load and export configuration settings
63
64 options_dir = str(esysroot) + '/scons'
65 sys.path.append(options_dir)
66
67 if hostname=='ess':
68 from ess_options import *
69
70 if dodebug==1:
71 cxx_flags=cxx_flags_debug
72 cc_flags=cc_flags_debug
73
74 # add solver flags
75 cxx_flags = cxx_flags + ' -DSCSL'
76 cc_flags = cc_flags + ' -DSCSL'
77
78 Export(["python_path"])
79 Export(["boost_path"])
80 Export(["cxx"])
81 Export(["cc"])
82 Export(["cxx_flags"])
83 Export(["cc_flags"])
84
85 #
86 # print out build configuration for this module
87
88 print "############################################"
89 print "Build configuration for module: finley"
90 print " dodebug: ", dodebug
91 print " usegcc: ", usegcc
92 print " cc: ", cc
93 print " cxx: ", cxx
94 print " platform: ", platform
95 print " hostname: ", hostname
96 print " libinstall: ", libinstall
97 print "############################################"
98
99 #
100 # call the SConscript to do the actual build
101
102 SConscript('src/finley/SConscript', src_dir='src/finley', build_dir='obj', duplicate=0)

  ViewVC Help
Powered by ViewVC 1.1.26