1 |
# Copyright 2006 by ACcESS MNRF |
# Copyright 2006 by ACcESS MNRF |
|
# |
|
|
# http://www.access.edu.au |
|
|
# Primary Business: Queensland, Australia |
|
|
# Licensed under the Open Software License version 3.0 |
|
|
# http://www.opensource.org/licenses/osl-3.0.php |
|
|
# |
|
|
# |
|
2 |
# |
# |
3 |
|
# http://www.access.edu.au |
4 |
|
# Primary Business: Queensland, Australia |
5 |
|
# Licensed under the Open Software License version 3.0 |
6 |
|
# http://www.opensource.org/licenses/osl-3.0.php |
7 |
|
|
8 |
# top-level Scons configuration file for all esys13 modules |
# top-level Scons configuration file for all esys13 modules |
9 |
# Begin initialisation Section |
# Begin initialisation Section |
10 |
# all of this section just intialises default environments and helper |
# all of this section just intialises default environments and helper |
11 |
# scripts. You shouldn't need to modify this section. |
# scripts. You shouldn't need to modify this section. |
12 |
EnsureSConsVersion(0,96,91) |
EnsureSConsVersion(0,96,91) |
13 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
14 |
|
|
15 |
# import tools: |
#=============================================================== |
16 |
|
# import tools: |
17 |
import glob |
import glob |
18 |
import sys, os |
import sys, os |
19 |
|
import socket |
20 |
# Add our extensions |
# Add our extensions |
21 |
if sys.path.count('scons')==0: sys.path.append('scons') |
if sys.path.count('scons')==0: sys.path.append('scons') |
22 |
import scons_extensions |
import scons_extensions |
23 |
|
|
24 |
|
#=============================================================== |
25 |
|
# check on windows or linux platform |
26 |
|
# |
27 |
|
IS_WINDOWS_PLATFORM = (os.name== "nt") |
28 |
|
|
29 |
|
if IS_WINDOWS_PLATFORM: |
30 |
|
tools_prefix="C:\\Program Files\\" |
31 |
|
else: |
32 |
|
tools_prefix="/usr" |
33 |
|
|
34 |
|
#============================================================================================== |
35 |
|
# |
36 |
|
# get the installation prefix |
37 |
|
# |
38 |
|
prefix = ARGUMENTS.get('prefix', Dir('#.').abspath) |
39 |
|
print "Install prefix is: ", prefix |
40 |
|
|
41 |
# Default options and options help text |
# Default options and options help text |
42 |
# These are defaults and can be overridden using command line arguments or an options file. |
# These are defaults and can be overridden using command line arguments or an options file. |
43 |
# if the options_file or ARGUMENTS do not exist then the ones listed as default here are used |
# if the options_file or ARGUMENTS do not exist then the ones listed as default here are used |
44 |
# DO NOT CHANGE THEM HERE |
# DO NOT CHANGE THEM HERE |
45 |
|
# Where to install? |
46 |
|
#============================================================================================== |
47 |
|
# |
48 |
|
# get the options file if present: |
49 |
|
# |
50 |
if ARGUMENTS.get('options_file',0): |
if ARGUMENTS.get('options_file',0): |
51 |
options_file = ARGUMENTS.get('options_file',0) |
options_file = ARGUMENTS.get('options_file',0) |
52 |
else: |
else: |
|
import socket |
|
53 |
from string import ascii_letters,digits |
from string import ascii_letters,digits |
54 |
hostname="" |
hostname="" |
55 |
for s in socket.gethostname().split('.')[0]: |
for s in socket.gethostname().split('.')[0]: |
57 |
hostname+=s |
hostname+=s |
58 |
else: |
else: |
59 |
hostname+="_" |
hostname+="_" |
60 |
options_file = "scons/"+hostname+"_options.py" |
options_file = os.path.join("scons",hostname+"_options.py") |
61 |
|
|
62 |
|
if os.path.isfile(options_file): |
63 |
|
print "option file is ",options_file,"." |
64 |
|
else: |
65 |
|
print "option file is ",options_file, "(not present)." |
66 |
|
# and load it |
67 |
opts = Options(options_file, ARGUMENTS) |
opts = Options(options_file, ARGUMENTS) |
68 |
|
#================================================================ |
69 |
|
# |
70 |
|
# check if UMFPACK is installed on the system: |
71 |
|
# |
72 |
|
uf_root=None |
73 |
|
for i in [ 'UMFPACK', 'umfpack', 'ufsparse', 'UFSPARSE']: |
74 |
|
if os.path.isdir(os.path.join(tools_prefix,'include',i)): |
75 |
|
uf_root=i |
76 |
|
print i," is used form ",tools_prefix |
77 |
|
break |
78 |
|
if not uf_root==None: |
79 |
|
umf_path_default=os.path.join(tools_prefix,'include',uf_root) |
80 |
|
umf_lib_path_default=os.path.join(tools_prefix,'lib') |
81 |
|
umf_libs_default=['umfpack'] |
82 |
|
amd_path_default=os.path.join(tools_prefix,'include',uf_root) |
83 |
|
amd_lib_path_default=os.path.join(tools_prefix,'lib') |
84 |
|
amd_libs_default=['amd'] |
85 |
|
ufc_path_default=os.path.join(tools_prefix,'include',uf_root) |
86 |
|
else: |
87 |
|
umf_path_default=None |
88 |
|
umf_lib_path_default=None |
89 |
|
umf_libs_default=None |
90 |
|
amd_path_default=None |
91 |
|
amd_lib_path_default=None |
92 |
|
amd_libs_default=None |
93 |
|
ufc_path_default=None |
94 |
|
# |
95 |
|
#========================================================================== |
96 |
|
# |
97 |
|
# python installation: |
98 |
|
# |
99 |
|
if IS_WINDOWS_PLATFORM: |
100 |
|
python_path_default=os.path.join(tools_prefix,'python%s%s'%(sys.version_info[0],sys.version_info[1]),"include") |
101 |
|
python_lib_path_default=os.path.join(tools_prefix,'python%s%s'%(sys.version_info[0],sys.version_info[1]),"libs") |
102 |
|
python_libs_default=["python%s%s"%(sys.version_info[0],sys.version_info[1])] |
103 |
|
else: |
104 |
|
python_path_default=os.path.join(tools_prefix,'include','python%s.%s'%(sys.version_info[0],sys.version_info[1])) |
105 |
|
python_lib_path_default=os.path.join(tools_prefix,'lib') |
106 |
|
python_libs_default=["python%s.%s"%(sys.version_info[0],sys.version_info[1])] |
107 |
|
|
108 |
|
#========================================================================== |
109 |
|
# |
110 |
|
# boost installation: |
111 |
|
# |
112 |
|
if IS_WINDOWS_PLATFORM: |
113 |
|
boost_libs_path_default=os.path.join(tools_prefix,'boost','lib') |
114 |
|
boost_libs_default=None |
115 |
|
for i in os.listdir(boost_libs_path_default): |
116 |
|
name=os.path.splitext(i) |
117 |
|
if name[1] == ".dll" and name[0].startswith("boost_python"): |
118 |
|
if boost_libs_default == None: |
119 |
|
boost_libs_default= [ name[0] ] |
120 |
|
else: |
121 |
|
if not name[0].find("-gd-"): boost_libs_default=[ name[0] ] |
122 |
|
boost_path_default=os.path.join(tools_prefix,'boost','include','boost-%s'%(boost_libs_default[0].split("-")[-1],)) |
123 |
|
else: |
124 |
|
boost_path_default=os.path.join(tools_prefix,'include') |
125 |
|
boost_libs_path_default=os.path.join(tools_prefix,'lib') |
126 |
|
boost_libs_default=['boost_python'] |
127 |
|
#========================================================================== |
128 |
|
# |
129 |
|
# check if netCDF is installed on the system: |
130 |
|
# |
131 |
|
if IS_WINDOWS_PLATFORM: |
132 |
|
netcdf_dir=os.path.join(tools_prefix,'netcdf') |
133 |
|
netCDF_path_default=os.path.join(netcdf_dir,'include') |
134 |
|
netCDF_lib_path_default=os.path.join(netcdf_dir,'lib') |
135 |
|
else: |
136 |
|
netCDF_path_default=os.path.join(tools_prefix,'include','netcdf-3') |
137 |
|
netCDF_lib_path_default=os.path.join(tools_prefix,'lib','netcdf-3') |
138 |
|
|
139 |
|
if os.path.isdir(netCDF_path_default) and os.path.isdir(netCDF_lib_path_default): |
140 |
|
useNetCDF_default='yes' |
141 |
|
netCDF_libs_default=[ 'netcdf_c++', 'netcdf' ] |
142 |
|
else: |
143 |
|
useNetCDF_default='no' |
144 |
|
netCDF_path_default=None |
145 |
|
netCDF_lib_path_default=None |
146 |
|
netCDF_libs_default=None |
147 |
|
|
148 |
|
if IS_WINDOWS_PLATFORM: |
149 |
|
useNetCDF_default='no' # be default netcdf is not supported on windows. |
150 |
|
#========================================================================== |
151 |
|
# |
152 |
|
# compile: |
153 |
|
# |
154 |
|
if IS_WINDOWS_PLATFORM: |
155 |
|
# cc_flags_default = '/GR /EHsc /MD /Qc99 /Qopenmp /Qopenmp-report1 /O3 /G7 /Qprec /Qpar-report1 /QxP /QaxP' |
156 |
|
# cc_flags_debug_default = '/Od /MDd /RTC1 /GR /EHsc /Qc99 /Qopenmp /Qopenmp-report1 /Qprec' |
157 |
|
cc_flags_default = '/nologo /EHsc /GR /wd4068 /O2 /Op /MT /W3 /Ob0 /Z7' |
158 |
|
cc_flags_debug_default ='/nologo /EHsc /GR /wd4068 /Od /RTC1 /MTd /ZI /Ob0 /Z7' |
159 |
|
|
160 |
|
cc_flags_default = '/nologo /EHsc /GR /O2 /MT /W3 /Ob0 /Z7 /wd4068' |
161 |
|
cc_flags_debug_default ='/nologo /EHsc /GR /Od /RTC1 /MTd /W3 /Ob0 /Z7/wd4068' |
162 |
|
cxx_flags_default = '' |
163 |
|
cxx_flags_debug_default = '' |
164 |
|
cc_common_flags = '/FD /EHsc /GR /wd4068 ' |
165 |
|
else: |
166 |
|
cc_flags_default='-O3 -std=c99 -ffast-math -fpic -Wno-unknown-pragmas -ansi -pedantic-errors' |
167 |
|
cc_flags_debug_default='-g -O0 -ffast-math -std=c99 -fpic -Wno-unknown-pragmas -ansi -pedantic-errors' |
168 |
|
cxx_flags_default='--no-warn -ansi' |
169 |
|
cxx_flags_debug_default='--no-warn -ansi -DDOASSERT' |
170 |
|
#============================================================================================== |
171 |
|
# Default options and options help text |
172 |
|
# These are defaults and can be overridden using command line arguments or an options file. |
173 |
|
# if the options_file or ARGUMENTS do not exist then the ones listed as default here are used |
174 |
|
# DO NOT CHANGE THEM HERE |
175 |
opts.AddOptions( |
opts.AddOptions( |
176 |
# Where to install esys stuff |
# Where to install esys stuff |
177 |
('incinstall', 'where the esys headers will be installed', Dir('#.').abspath+'/include'), |
('incinstall', 'where the esys headers will be installed', prefix+'/include'), |
178 |
('libinstall', 'where the esys libraries will be installed', Dir('#.').abspath+'/lib'), |
('libinstall', 'where the esys libraries will be installed', prefix+'/lib'), |
179 |
('pyinstall', 'where the esys python modules will be installed', Dir('#.').abspath), |
('pyinstall', 'where the esys python modules will be installed', prefix), |
180 |
('src_zipfile', 'the source zip file will be installed.', Dir('#.').abspath+"/release/escript_src.zip"), |
('src_zipfile', 'the source zip file will be installed.', prefix+"/release/escript_src.zip"), |
181 |
('test_zipfile', 'the test zip file will be installed.', Dir('#.').abspath+"/release/escript_tests.zip"), |
('test_zipfile', 'the test zip file will be installed.', prefix+"/release/escript_tests.zip"), |
182 |
('src_tarfile', 'the source tar file will be installed.', Dir('#.').abspath+"/release/escript_src.tar.gz"), |
('src_tarfile', 'the source tar file will be installed.', prefix+"/release/escript_src.tar.gz"), |
183 |
('test_tarfile', 'the test tar file will be installed.', Dir('#.').abspath+"/release/escript_tests.tar.gz"), |
('test_tarfile', 'the test tar file will be installed.', prefix+"/release/escript_tests.tar.gz"), |
184 |
('examples_tarfile', 'the examples tar file will be installed.', Dir('#.').abspath+"/release/doc/escript_examples.tar.gz"), |
('examples_tarfile', 'the examples tar file will be installed.', prefix+"/release/doc/escript_examples.tar.gz"), |
185 |
('examples_zipfile', 'the examples zip file will be installed.', Dir('#.').abspath+"/release/doc/escript_examples.zip"), |
('examples_zipfile', 'the examples zip file will be installed.', prefix+"/release/doc/escript_examples.zip"), |
186 |
('guide_pdf', 'name of the user guide in pdf format', Dir('#.').abspath+"/release/doc/user/guide.pdf"), |
('guide_pdf', 'name of the user guide in pdf format', prefix+"/release/doc/user/guide.pdf"), |
187 |
('api_epydoc', 'name of the epydoc api docs directory',Dir('#.').abspath+"/release/doc/epydoc"), |
('api_epydoc', 'name of the epydoc api docs directory',prefix+"/release/doc/epydoc"), |
188 |
('guide_html', 'name of the directory for user guide in html format', Dir('#.').abspath+"/release/doc/user/html"), |
('api_doxygen', 'name of the doxygen api docs directory',prefix+"/release/doc/doxygen"), |
189 |
|
('guide_html', 'name of the directory for user guide in html format', prefix+"/release/doc/user/html"), |
190 |
# Compilation options |
# Compilation options |
191 |
BoolOption('dodebug', 'Do you want a debug build?', 'no'), |
BoolOption('dodebug', 'Do you want a debug build?', 'no'), |
192 |
('options_file', "Optional file containing preferred options. Ignored if it doesn't exist (default: scons/hostname_options.py)", options_file), |
('options_file', "Optional file containing preferred options. Ignored if it doesn't exist (default: scons/<hostname>_options.py)", options_file), |
193 |
('cc_defines','C/C++ defines to use', None), |
('cc_defines','C/C++ defines to use', None), |
194 |
('cc_flags','C compiler flags to use (Release build)', '-O3 -std=c99 -ffast-math -fpic -Wno-unknown-pragmas'), |
('cc_flags','C compiler flags to use (Release build)', cc_flags_default), |
195 |
('cc_flags_debug', 'C compiler flags to use (Debug build)', '-g -O0 -ffast-math -std=c99 -fpic -Wno-unknown-pragmas'), |
('cc_flags_debug', 'C compiler flags to use (Debug build)', cc_flags_debug_default), |
196 |
('cxx_flags', 'C++ compiler flags to use (Release build)', '--no-warn -ansi'), |
('cxx_flags', 'C++ compiler flags to use (Release build)', cxx_flags_default), |
197 |
('cxx_flags_debug', 'C++ compiler flags to use (Debug build)', '--no-warn -ansi -DDOASSERT -DDOPROF'), |
('cxx_flags_debug', 'C++ compiler flags to use (Debug build)', cxx_flags_debug_default), |
|
('cc_flags_MPI','C compiler flags to use (Release MPI build)', '-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -fno-alias -c99 -w1 -fpic -wd161'), |
|
|
('cc_flags_debug_MPI', 'C compiler flags to use (Debug MPI build)', '-g -O0 -c99 -w1 -fpic -wd161'), |
|
|
('cxx_flags_MPI', 'C++ compiler flags to use (Release MPI build)', '-ansi -wd1563 -wd161'), |
|
|
('cxx_flags_debug_MPI', 'C++ compiler flags to use (Debug MPI build)', '-ansi -DDOASSERT -DDOPROF -wd1563 -wd161'), |
|
198 |
('ar_flags', 'Static library archiver flags to use', None), |
('ar_flags', 'Static library archiver flags to use', None), |
199 |
('sys_libs', 'System libraries to link with', None), |
('sys_libs', 'System libraries to link with', None), |
200 |
('tar_flags','flags for zip files','-c -z'), |
('tar_flags','flags for zip files','-c -z'), |
201 |
# MKL |
# MKL |
202 |
PathOption('mkl_path', 'Path to MKL includes', None), |
PathOption('mkl_path', 'Path to MKL includes', None), |
203 |
PathOption('mkl_lib_path', 'Path to MKL libs', None), |
PathOption('mkl_lib_path', 'Path to MKL libs', None), |
204 |
('mkl_libs', 'MKL libraries to link with', None), |
('mkl_libs', 'MKL libraries to link with', None), |
205 |
# SCSL |
# SCSL |
206 |
PathOption('scsl_path', 'Path to SCSL includes', None), |
PathOption('scsl_path', 'Path to SCSL includes', None), |
207 |
PathOption('scsl_lib_path', 'Path to SCSL libs', None), |
PathOption('scsl_lib_path', 'Path to SCSL libs', None), |
208 |
('scsl_libs', 'SCSL libraries to link with', None), |
('scsl_libs', 'SCSL libraries to link with', None), |
209 |
('scsl_libs_MPI', 'SCSL libraries to link with for MPI build', None), |
('scsl_libs_MPI', 'SCSL libraries to link with for MPI build', None), |
210 |
# UMFPACK |
# UMFPACK |
211 |
PathOption('umf_path', 'Path to UMF includes', None), |
PathOption('ufc_path', 'Path to UFconfig includes', ufc_path_default), |
212 |
PathOption('umf_lib_path', 'Path to UMF libs', None), |
PathOption('umf_path', 'Path to UMFPACK includes', umf_path_default), |
213 |
('umf_libs', 'UMF libraries to link with', None), |
PathOption('umf_lib_path', 'Path to UMFPACK libs', umf_lib_path_default), |
214 |
|
('umf_libs', 'UMFPACK libraries to link with', umf_libs_default), |
215 |
|
# AMD (used by UMFPACK) |
216 |
|
PathOption('amd_path', 'Path to AMD includes', amd_path_default), |
217 |
|
PathOption('amd_lib_path', 'Path to AMD libs', amd_lib_path_default), |
218 |
|
('amd_libs', 'AMD libraries to link with', amd_libs_default), |
219 |
|
# BLAS |
220 |
|
PathOption('blas_path', 'Path to BLAS includes', None), |
221 |
|
PathOption('blas_lib_path', 'Path to BLAS libs', None), |
222 |
|
('blas_libs', 'BLAS libraries to link with', None), |
223 |
|
# netCDF |
224 |
|
('useNetCDF', 'switch on/off the usage of netCDF', useNetCDF_default), |
225 |
|
PathOption('netCDF_path', 'Path to netCDF includes', netCDF_path_default), |
226 |
|
PathOption('netCDF_lib_path', 'Path to netCDF libs', netCDF_lib_path_default), |
227 |
|
('netCDF_libs', 'netCDF C++ libraries to link with', netCDF_libs_default), |
228 |
# Python |
# Python |
229 |
# locations of include files for python |
# locations of include files for python |
230 |
PathOption('python_path', 'Path to Python includes', '/usr/include/python%s.%s'%(sys.version_info[0],sys.version_info[1])), |
PathOption('python_path', 'Path to Python includes', python_path_default), |
231 |
PathOption('python_lib_path', 'Path to Python libs', '/usr/lib'), |
PathOption('python_lib_path', 'Path to Python libs', python_lib_path_default), |
232 |
('python_lib', 'Python libraries to link with', ["python%s.%s"%(sys.version_info[0],sys.version_info[1]),]), |
('python_libs', 'Python libraries to link with', python_libs_default), |
233 |
# Boost |
# Boost |
234 |
PathOption('boost_path', 'Path to Boost includes', '/usr/include'), |
PathOption('boost_path', 'Path to Boost includes', boost_path_default), |
235 |
PathOption('boost_lib_path', 'Path to Boost libs', '/usr/lib'), |
PathOption('boost_libs_path', 'Path to Boost libs', boost_libs_path_default), |
236 |
('boost_lib', 'Boost libraries to link with', ['boost_python',]), |
('boost_libs', 'Boost libraries to link with', boost_libs_default), |
237 |
# Doc building |
# Doc building |
238 |
# PathOption('doxygen_path', 'Path to Doxygen executable', None), |
# PathOption('doxygen_path', 'Path to Doxygen executable', None), |
239 |
# PathOption('epydoc_path', 'Path to Epydoc executable', None), |
# PathOption('epydoc_path', 'Path to Epydoc executable', None), |
240 |
# PAPI |
# PAPI |
241 |
PathOption('papi_path', 'Path to PAPI includes', None), |
PathOption('papi_path', 'Path to PAPI includes', None), |
242 |
PathOption('papi_lib_path', 'Path to PAPI libs', None), |
PathOption('papi_lib_path', 'Path to PAPI libs', None), |
243 |
('papi_libs', 'PAPI libraries to link with', None), |
('papi_libs', 'PAPI libraries to link with', None), |
244 |
# MPI |
# MPI |
245 |
BoolOption('useMPI', 'Compile parallel version using MPI', 'no'), |
BoolOption('useMPI', 'Compile parallel version using MPI', 'no'), |
246 |
) |
) |
247 |
|
#================================================================================================= |
248 |
# Initialise Scons Build Environment |
# |
249 |
# check for user environment variables we are interested in |
# Note: On the Altix the intel compilers are not automatically |
250 |
|
# detected by scons intelc.py script. The Altix has a different directory |
251 |
|
# path and in some locations the "modules" facility is used to support |
252 |
|
# multiple compiler versions. This forces the need to import the users PATH |
253 |
|
# environment which isn't the "scons way" |
254 |
|
# This doesn't impact linux and windows which will use the default compiler (g++ or msvc, or the intel compiler if it is installed on both platforms) |
255 |
|
# FIXME: Perhaps a modification to intelc.py will allow better support for ia64 on altix |
256 |
|
# |
257 |
|
if IS_WINDOWS_PLATFORM: |
258 |
|
env = Environment(tools = ['default', 'msvc'], options = opts) |
259 |
|
else: |
260 |
|
if os.uname()[4]=='ia64': |
261 |
|
env = Environment(tools = ['default', 'intelc'], options = opts) |
262 |
|
if env['CXX'] == 'icpc': |
263 |
|
env['LINK'] = env['CXX'] # version >=9 of intel c++ compiler requires use of icpc to link in C++ runtimes (icc does not). FIXME: this behaviour could be directly incorporated into scons intelc.py |
264 |
|
else: |
265 |
|
env = Environment(tools = ['default'], options = opts) |
266 |
|
Help(opts.GenerateHelpText(env)) |
267 |
|
#================================================================================================= |
268 |
|
# |
269 |
|
# Initialise Scons Build Environment |
270 |
|
# check for user environment variables we are interested in |
271 |
try: |
try: |
272 |
python_path = os.environ['PYTHONPATH'] |
python_path = os.environ['PYTHONPATH'] |
273 |
|
env['ENV']['PYTHONPATH'] = python_path |
274 |
except KeyError: |
except KeyError: |
275 |
python_path = '' |
python_path = '' |
276 |
|
|
277 |
|
try: |
278 |
|
omp_num_threads = os.environ['OMP_NUM_THREADS'] |
279 |
|
except KeyError: |
280 |
|
omp_num_threads = 1 |
281 |
|
env['ENV']['OMP_NUM_THREADS'] = omp_num_threads |
282 |
|
|
283 |
|
try: |
284 |
|
env['ENV']['DISPLAY'] = os.environ['DISPLAY'] |
285 |
|
env['ENV']['XAUTHORITY'] = os.environ['XAUTHORITY'] |
286 |
|
except KeyError: |
287 |
|
pass |
288 |
|
|
289 |
try: |
try: |
290 |
path = os.environ['PATH'] |
path = os.environ['PATH'] |
291 |
|
env['ENV']['PATH'] = path |
292 |
except KeyError: |
except KeyError: |
293 |
path = '' |
path = '' |
294 |
try: |
try: |
295 |
ld_library_path = os.environ['LD_LIBRARY_PATH'] |
ld_library_path = os.environ['LD_LIBRARY_PATH'] |
296 |
|
env['ENV']['LD_LIBRARY_PATH'] = ld_library_path |
297 |
except KeyError: |
except KeyError: |
298 |
ld_library_path = '' |
ld_library_path = '' |
299 |
|
#========================================================================== |
300 |
# Note: On the Altix the intel compilers are not automatically |
# |
301 |
# detected by scons intelc.py script. The Altix has a different directory |
# Add some customer builders |
302 |
# path and in some locations the "modules" facility is used to support |
# |
|
# multiple compiler versions. This forces the need to import the users PATH |
|
|
# environment which isn't the "scons way" |
|
|
# This doesn't impact linux and windows which will use the default compiler (g++ or msvc, or the intel compiler if it is installed on both platforms) |
|
|
# FIXME: Perhaps a modification to intelc.py will allow better support for ia64 on altix |
|
|
|
|
|
if os.name != "nt" and os.uname()[4]=='ia64': |
|
|
env = Environment(ENV = {'PATH':path}, tools = ['default', 'intelc'], options = opts) |
|
|
env['ENV']['PATH'] = path |
|
|
env['ENV']['LD_LIBRARY_PATH'] = ld_library_path |
|
|
env['ENV']['PYTHONPATH'] = python_path |
|
|
if env['CXX'] == 'icpc': |
|
|
env['LINK'] = env['CXX'] # version >=9 of intel c++ compiler requires use of icpc to link in C++ runtimes (icc does not). FIXME: this behaviour could be directly incorporated into scons intelc.py |
|
|
elif os.name == "nt": |
|
|
env = Environment(tools = ['default', 'intelc'], options = opts) |
|
|
env['ENV']['PYTHONPATH'] = python_path |
|
|
else: |
|
|
env = Environment(tools = ['default'], options = opts) |
|
|
env['ENV']['PATH'] = path |
|
|
env['ENV']['LD_LIBRARY_PATH'] = ld_library_path |
|
|
env['ENV']['PYTHONPATH'] = python_path |
|
|
|
|
|
# Setup help for options |
|
|
Help(opts.GenerateHelpText(env)) |
|
|
|
|
|
# Add some customer builders |
|
303 |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
304 |
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
305 |
|
|
306 |
if env['PLATFORM'] == "win32": |
if IS_WINDOWS_PLATFORM: |
307 |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix='.exe', single_source=True) |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix='.exe', single_source=True) |
308 |
else: |
else: |
309 |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', single_source=True) |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', single_source=True) |
317 |
incinstall = env['incinstall'] |
incinstall = env['incinstall'] |
318 |
env.Append(CPPPATH = [incinstall,]) |
env.Append(CPPPATH = [incinstall,]) |
319 |
except KeyError: |
except KeyError: |
320 |
incinstall = None |
incinstall = None |
321 |
try: |
try: |
322 |
libinstall = env['libinstall'] |
libinstall = env['libinstall'] |
323 |
env.Append(LIBPATH = [libinstall,]) |
env.Append(LIBPATH = [libinstall,]) # Adds -L for building of libescript.so libfinley.so escriptcpp.so finleycpp.so |
324 |
env.PrependENVPath('LD_LIBRARY_PATH', libinstall) |
env.PrependENVPath('LD_LIBRARY_PATH', libinstall) |
325 |
if env['PLATFORM'] == "win32": |
if env['PLATFORM'] == "win32": |
326 |
env.PrependENVPath('PATH', libinstall) |
env.PrependENVPath('PATH', libinstall) |
327 |
env.PrependENVPath('PATH', env['boost_lib_path']) |
env.PrependENVPath('PATH', env['boost_libs_path']) |
328 |
except KeyError: |
except KeyError: |
329 |
libinstall = None |
libinstall = None |
330 |
try: |
try: |
331 |
pyinstall = env['pyinstall']+'/esys' # all targets will install into pyinstall/esys but PYTHONPATH points at straight pyinstall so you go import esys.escript etc |
pyinstall = env['pyinstall']+'/esys' # all targets will install into pyinstall/esys but PYTHONPATH points at straight pyinstall so you go import esys.escript etc |
332 |
env.PrependENVPath('PYTHONPATH', env['pyinstall']) |
env.PrependENVPath('PYTHONPATH', env['pyinstall']) |
333 |
except KeyError: |
except KeyError: |
334 |
pyinstall = None |
pyinstall = None |
335 |
try: |
try: |
336 |
dodebug = env['dodebug'] |
dodebug = env['dodebug'] |
337 |
except KeyError: |
except KeyError: |
338 |
dodebug = None |
dodebug = None |
339 |
try: |
try: |
340 |
useMPI = env['useMPI'] |
useMPI = env['useMPI'] |
341 |
except KeyError: |
except KeyError: |
342 |
useMPI = None |
useMPI = None |
343 |
try: |
try: |
344 |
cc_defines = env['cc_defines'] |
cc_defines = env['cc_defines'] |
345 |
env.Append(CPPDEFINES = cc_defines) |
env.Append(CPPDEFINES = cc_defines) |
346 |
except KeyError: |
except KeyError: |
347 |
pass |
pass |
348 |
|
|
349 |
if dodebug: |
if dodebug: |
350 |
if useMPI: |
if useMPI: |
351 |
try: |
try: |
353 |
env.Append(CCFLAGS = flags) |
env.Append(CCFLAGS = flags) |
354 |
except KeyError: |
except KeyError: |
355 |
pass |
pass |
356 |
else: |
else: |
357 |
try: |
try: |
358 |
flags = env['cc_flags_debug'] |
flags = env['cc_flags_debug'] |
359 |
env.Append(CCFLAGS = flags) |
env.Append(CCFLAGS = flags) |
402 |
flags = env['ar_flags'] |
flags = env['ar_flags'] |
403 |
env.Append(ARFLAGS = flags) |
env.Append(ARFLAGS = flags) |
404 |
except KeyError: |
except KeyError: |
405 |
ar_flags = None |
ar_flags = None |
406 |
try: |
try: |
407 |
sys_libs = env['sys_libs'] |
sys_libs = env['sys_libs'] |
408 |
except KeyError: |
except KeyError: |
409 |
sys_libs = '' |
sys_libs = [] |
410 |
|
|
411 |
try: |
try: |
412 |
tar_flags = env['tar_flags'] |
tar_flags = env['tar_flags'] |
426 |
except KeyError: |
except KeyError: |
427 |
pass |
pass |
428 |
|
|
429 |
try: |
if useMPI: |
430 |
mkl_libs = env['mkl_libs'] |
mkl_libs = [] |
431 |
except KeyError: |
else: |
432 |
mkl_libs = '' |
try: |
433 |
|
mkl_libs = env['mkl_libs'] |
434 |
|
except KeyError: |
435 |
|
mkl_libs = [] |
436 |
|
|
437 |
try: |
try: |
438 |
includes = env['scsl_path'] |
includes = env['scsl_path'] |
439 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
440 |
except KeyError: |
except KeyError: |
441 |
pass |
pass |
442 |
|
|
443 |
try: |
try: |
444 |
lib_path = env['scsl_lib_path'] |
lib_path = env['scsl_lib_path'] |
445 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
446 |
except KeyError: |
except KeyError: |
447 |
pass |
pass |
448 |
if useMPI: |
|
449 |
|
if useMPI: |
450 |
try: |
try: |
451 |
scsl_libs = env['scsl_libs_MPI'] |
scsl_libs = env['scsl_libs_MPI'] |
452 |
except KeyError: |
except KeyError: |
453 |
scsl_libs = '' |
scsl_libs = [] |
454 |
else: |
else: |
455 |
try: |
try: |
456 |
scsl_libs = env['scsl_libs'] |
scsl_libs = env['scsl_libs'] |
457 |
except KeyError: |
except KeyError: |
458 |
scsl_libs = '' |
scsl_libs = [] |
459 |
|
|
460 |
try: |
try: |
461 |
includes = env['umf_path'] |
includes = env['umf_path'] |
462 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
463 |
except KeyError: |
except KeyError: |
464 |
pass |
pass |
465 |
|
|
466 |
try: |
try: |
467 |
lib_path = env['umf_lib_path'] |
lib_path = env['umf_lib_path'] |
468 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
469 |
except KeyError: |
except KeyError: |
470 |
pass |
pass |
471 |
|
|
472 |
|
if useMPI: |
473 |
|
umf_libs = [] |
474 |
|
else: |
475 |
|
try: |
476 |
|
umf_libs = env['umf_libs'] |
477 |
|
except KeyError: |
478 |
|
umf_libs = [] |
479 |
|
|
480 |
try: |
try: |
481 |
umf_libs = env['umf_libs'] |
includes = env['ufc_path'] |
482 |
|
env.Append(CPPPATH = [includes,]) |
483 |
except KeyError: |
except KeyError: |
484 |
umf_libs = '' |
pass |
485 |
|
|
486 |
|
try: |
487 |
|
includes = env['amd_path'] |
488 |
|
env.Append(CPPPATH = [includes,]) |
489 |
|
except KeyError: |
490 |
|
pass |
491 |
|
|
492 |
|
try: |
493 |
|
lib_path = env['amd_lib_path'] |
494 |
|
env.Append(LIBPATH = [lib_path,]) |
495 |
|
except KeyError: |
496 |
|
pass |
497 |
|
|
498 |
|
if useMPI: |
499 |
|
amd_libs = [] |
500 |
|
else: |
501 |
|
try: |
502 |
|
amd_libs = env['amd_libs'] |
503 |
|
except KeyError: |
504 |
|
amd_libs = [] |
505 |
|
|
506 |
|
try: |
507 |
|
includes = env['blas_path'] |
508 |
|
env.Append(CPPPATH = [includes,]) |
509 |
|
except KeyError: |
510 |
|
pass |
511 |
|
|
512 |
|
try: |
513 |
|
lib_path = env['blas_lib_path'] |
514 |
|
env.Append(LIBPATH = [lib_path,]) |
515 |
|
except KeyError: |
516 |
|
pass |
517 |
|
|
518 |
|
try: |
519 |
|
blas_libs = env['blas_libs'] |
520 |
|
except KeyError: |
521 |
|
blas_libs = [] |
522 |
|
|
523 |
|
try: |
524 |
|
useNetCDF = env['useNetCDF'] |
525 |
|
except KeyError: |
526 |
|
useNetCDF = 'yes' |
527 |
|
pass |
528 |
|
|
529 |
|
if not useNetCDF == 'yes': |
530 |
|
print "Warning: Installation is not configured with netCDF. Some I/O function may not be available." |
531 |
|
|
532 |
|
if useNetCDF == 'yes': |
533 |
|
try: |
534 |
|
includes = env['netCDF_path'] |
535 |
|
env.Append(CPPPATH = [includes,]) |
536 |
|
except KeyError: |
537 |
|
pass |
538 |
|
|
539 |
|
try: |
540 |
|
lib_path = env['netCDF_lib_path'] |
541 |
|
if IS_WINDOWS_PLATFORM: env['ENV']['PATH']+=";"+lib_path |
542 |
|
env.Append(LIBPATH = [ lib_path, ]) |
543 |
|
except KeyError: |
544 |
|
pass |
545 |
|
|
546 |
|
try: |
547 |
|
netCDF_libs = env['netCDF_libs'] |
548 |
|
except KeyError: |
549 |
|
netCDF_libs = [ ] |
550 |
|
else: |
551 |
|
netCDF_libs=[ ] |
552 |
|
|
553 |
try: |
try: |
554 |
includes = env['boost_path'] |
includes = env['boost_path'] |
555 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
556 |
except KeyError: |
except KeyError: |
557 |
pass |
pass |
558 |
try: |
try: |
559 |
lib_path = env['boost_lib_path'] |
lib_path = env['boost_libs_path'] |
560 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
561 |
except KeyError: |
except KeyError: |
562 |
pass |
pass |
563 |
try: |
try: |
564 |
boost_lib = env['boost_lib'] |
boost_libs = env['boost_libs'] |
565 |
except KeyError: |
except KeyError: |
566 |
boost_lib = None |
boost_libs = None |
567 |
try: |
try: |
568 |
includes = env['python_path'] |
includes = env['python_path'] |
569 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
575 |
except KeyError: |
except KeyError: |
576 |
pass |
pass |
577 |
try: |
try: |
578 |
python_lib = env['python_lib'] |
python_libs = env['python_libs'] |
579 |
except KeyError: |
except KeyError: |
580 |
python_lib = None |
python_libs = None |
581 |
try: |
try: |
582 |
doxygen_path = env['doxygen_path'] |
doxygen_path = env['doxygen_path'] |
583 |
except KeyError: |
except KeyError: |
584 |
doxygen_path = None |
doxygen_path = None |
585 |
try: |
try: |
586 |
epydoc_path = env['epydoc_path'] |
epydoc_path = env['epydoc_path'] |
587 |
except KeyError: |
except KeyError: |
588 |
epydoc_path = None |
epydoc_path = None |
589 |
try: |
try: |
590 |
includes = env['papi_path'] |
includes = env['papi_path'] |
591 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
599 |
try: |
try: |
600 |
papi_libs = env['papi_libs'] |
papi_libs = env['papi_libs'] |
601 |
except KeyError: |
except KeyError: |
602 |
papi_libs = None |
papi_libs = None |
603 |
|
|
604 |
|
|
605 |
try: |
try: |
606 |
src_zipfile = env.File(env['src_zipfile']) |
src_zipfile = env.File(env['src_zipfile']) |
607 |
except KeyError: |
except KeyError: |
608 |
src_zipfile = None |
src_zipfile = None |
609 |
try: |
try: |
610 |
test_zipfile = env.File(env['test_zipfile']) |
test_zipfile = env.File(env['test_zipfile']) |
611 |
except KeyError: |
except KeyError: |
612 |
test_zipfile = None |
test_zipfile = None |
613 |
try: |
try: |
614 |
examples_zipfile = env.File(env['examples_zipfile']) |
examples_zipfile = env.File(env['examples_zipfile']) |
615 |
except KeyError: |
except KeyError: |
616 |
examples_zipfile = None |
examples_zipfile = None |
617 |
|
|
618 |
try: |
try: |
619 |
src_tarfile = env.File(env['src_tarfile']) |
src_tarfile = env.File(env['src_tarfile']) |
620 |
except KeyError: |
except KeyError: |
621 |
src_tarfile = None |
src_tarfile = None |
622 |
try: |
try: |
623 |
test_tarfile = env.File(env['test_tarfile']) |
test_tarfile = env.File(env['test_tarfile']) |
624 |
except KeyError: |
except KeyError: |
625 |
test_tarfile = None |
test_tarfile = None |
626 |
try: |
try: |
627 |
examples_tarfile = env.File(env['examples_tarfile']) |
examples_tarfile = env.File(env['examples_tarfile']) |
628 |
except KeyError: |
except KeyError: |
629 |
examples_tarfile = None |
examples_tarfile = None |
630 |
|
|
631 |
try: |
try: |
632 |
guide_pdf = env.File(env['guide_pdf']) |
guide_pdf = env.File(env['guide_pdf']) |
633 |
except KeyError: |
except KeyError: |
634 |
guide_pdf = None |
guide_pdf = None |
635 |
|
|
636 |
try: |
try: |
637 |
guide_html_index = env.File('index.htm',env['guide_html']) |
guide_html_index = env.File('index.htm',env['guide_html']) |
638 |
except KeyError: |
except KeyError: |
639 |
guide_html_index = None |
guide_html_index = None |
640 |
|
|
641 |
try: |
try: |
642 |
api_epydoc = env.Dir(env['api_epydoc']) |
api_epydoc = env.Dir(env['api_epydoc']) |
643 |
except KeyError: |
except KeyError: |
644 |
api_epydoc = None |
api_epydoc = None |
645 |
|
|
646 |
|
try: |
647 |
|
api_doxygen = env.Dir(env['api_doxygen']) |
648 |
|
except KeyError: |
649 |
|
api_doxygen = None |
650 |
|
|
651 |
# Zipgets |
# Zipgets |
|
|
|
652 |
env.Default(libinstall) |
env.Default(libinstall) |
653 |
env.Default(incinstall) |
env.Default(incinstall) |
654 |
env.Default(pyinstall) |
env.Default(pyinstall) |
655 |
env.Alias('release_src',[ src_zipfile, src_tarfile ]) |
env.Alias('release_src',[ src_zipfile, src_tarfile ]) |
656 |
env.Alias('release_tests',[ test_zipfile, test_tarfile]) |
env.Alias('release_tests',[ test_zipfile, test_tarfile]) |
657 |
env.Alias('release_examples',[ examples_zipfile, examples_tarfile]) |
env.Alias('release_examples',[ examples_zipfile, examples_tarfile]) |
658 |
|
env.Alias('examples_zipfile',examples_zipfile) |
659 |
|
env.Alias('examples_tarfile',examples_tarfile) |
660 |
env.Alias('api_epydoc',api_epydoc) |
env.Alias('api_epydoc',api_epydoc) |
661 |
env.Alias('docs',[ 'release_examples', guide_pdf, guide_html_index, api_epydoc]) |
env.Alias('api_doxygen',api_doxygen) |
662 |
|
env.Alias('guide_html_index',guide_html_index) |
663 |
|
env.Alias('guide_pdf', guide_pdf) |
664 |
|
env.Alias('docs',[ 'release_examples', 'guide_pdf', api_epydoc, api_doxygen, guide_html_index]) |
665 |
env.Alias('release', ['release_src', 'release_tests', 'docs']) |
env.Alias('release', ['release_src', 'release_tests', 'docs']) |
666 |
env.Alias('build_tests') # target to build all C++ tests |
env.Alias('build_tests') # target to build all C++ tests |
667 |
env.Alias('build_py_tests') # target to build all python tests |
env.Alias('build_py_tests') # target to build all python tests |
675 |
env.Alias(init_target) |
env.Alias(init_target) |
676 |
|
|
677 |
# Allow sconscripts to see the env |
# Allow sconscripts to see the env |
678 |
Export(["env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umf_libs", |
Export(["IS_WINDOWS_PLATFORM", "env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umf_libs", "amd_libs", "blas_libs", "netCDF_libs", "useNetCDF", |
679 |
"boost_lib", "python_lib", "doxygen_path", "epydoc_path", "papi_libs", |
"boost_libs", "python_libs", "doxygen_path", "epydoc_path", "papi_libs", |
680 |
"sys_libs", "test_zipfile", "src_zipfile", "test_tarfile", "src_tarfile", "examples_tarfile", "examples_zipfile", |
"sys_libs", "test_zipfile", "src_zipfile", "test_tarfile", "src_tarfile", "examples_tarfile", "examples_zipfile", |
681 |
"guide_pdf", "guide_html_index", "api_epydoc", "useMPI"]) |
"guide_pdf", "guide_html_index", "api_epydoc", "api_doxygen", "useMPI" ]) |
682 |
|
|
683 |
# End initialisation section |
# End initialisation section |
684 |
# Begin configuration section |
# Begin configuration section |
687 |
release_testfiles=[env.File('README_TESTS'),] |
release_testfiles=[env.File('README_TESTS'),] |
688 |
env.Zip(src_zipfile, release_srcfiles) |
env.Zip(src_zipfile, release_srcfiles) |
689 |
env.Zip(test_zipfile, release_testfiles) |
env.Zip(test_zipfile, release_testfiles) |
690 |
env.Tar(src_tarfile, release_srcfiles) |
try: |
691 |
env.Tar(test_tarfile, release_testfiles) |
env.Tar(src_tarfile, release_srcfiles) |
692 |
|
env.Tar(test_tarfile, release_testfiles) |
693 |
|
except AttributeError: |
694 |
|
pass |
695 |
# Insert new components to be build here |
# Insert new components to be build here |
696 |
# FIXME: might be nice to replace this verbosity with a list of targets and some |
# FIXME: might be nice to replace this verbosity with a list of targets and some |
697 |
# FIXME: nifty python to create the lengthy but very similar env.Sconscript lines |
# FIXME: nifty python to create the lengthy but very similar env.Sconscript lines |
699 |
env.SConscript(dirs = ['tools/CppUnitTest/src'], build_dir='build/$PLATFORM/tools/CppUnitTest', duplicate=0) |
env.SConscript(dirs = ['tools/CppUnitTest/src'], build_dir='build/$PLATFORM/tools/CppUnitTest', duplicate=0) |
700 |
# C/C++ Libraries |
# C/C++ Libraries |
701 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
702 |
env.SConscript(dirs = ['bruce/src'], build_dir='build/$PLATFORM/bruce', duplicate=0) |
# bruce is removed for now as it doesn't really do anything |
703 |
|
# env.SConscript(dirs = ['bruce/src'], build_dir='build/$PLATFORM/bruce', duplicate=0) |
704 |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
705 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
706 |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
707 |
env.SConscript(dirs = ['modellib/py_src'], build_dir='build/$PLATFORM/modellib', duplicate=0) |
env.SConscript(dirs = ['modellib/py_src'], build_dir='build/$PLATFORM/modellib', duplicate=0) |
708 |
env.SConscript(dirs = ['doc'], build_dir='build/$PLATFORM/doc', duplicate=0) |
env.SConscript(dirs = ['doc'], build_dir='build/$PLATFORM/doc', duplicate=0) |
709 |
# env.SConscript(dirs = ['pyvisi/py_src'], build_dir='build/$PLATFORM/pyvisi', duplicate=0) |
env.SConscript(dirs = ['pyvisi/py_src'], build_dir='build/$PLATFORM/pyvisi', duplicate=0) |
710 |
|
env.SConscript(dirs = ['pycad/py_src'], build_dir='build/$PLATFORM/pycad', duplicate=0) |
711 |
|
|
712 |
# added by Ben Cumming |
# added by Ben Cumming |
713 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
714 |
#env.SConscript(dirs = ['../test'], build_dir='../test/build', duplicate=0) |
#env.SConscript(dirs = ['../test'], build_dir='../test/build', duplicate=0) |