1 |
# Copyright 2006 by ACcESS MNRF |
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 |
# |
9 |
# |
10 |
|
11 |
# top-level Scons configuration file for all esys13 modules |
12 |
# Begin initialisation Section |
13 |
# all of this section just intialises default environments and helper |
14 |
# scripts. You shouldn't need to modify this section. |
15 |
EnsureSConsVersion(0,96,91) |
16 |
EnsurePythonVersion(2,3) |
17 |
|
18 |
# import tools: |
19 |
import glob |
20 |
import sys, os |
21 |
import socket |
22 |
# Add our extensions |
23 |
if sys.path.count('scons')==0: sys.path.append('scons') |
24 |
import scons_extensions |
25 |
|
26 |
# check if UMFPACK is installed on the system: |
27 |
if os.path.isdir('/opt/UMFPACK/Include') and os.path.isdir('/opt/UMFPACK/Lib'): |
28 |
umf_path_default='/opt/UMFPACK/Include' |
29 |
umf_lib_path_default='/opt/UMFPACK/Lib' |
30 |
umf_libs_default=['umfpack'] |
31 |
else: |
32 |
umf_path_default=None |
33 |
umf_lib_path_default=None |
34 |
umf_libs_default=[] |
35 |
|
36 |
if os.path.isdir('/opt/AMD/Include') and os.path.isdir('/opt/AMD/Lib'): |
37 |
amd_path_default='/opt/AMD/Include' |
38 |
amd_lib_path_default='/opt/AMD/Lib' |
39 |
amd_libs_default=['amd'] |
40 |
else: |
41 |
amd_path_default=None |
42 |
amd_lib_path_default=None |
43 |
amd_libs_default=[] |
44 |
|
45 |
if os.path.isdir('/opt/UFconfig'): |
46 |
ufc_path_default='/opt/UFconfig' |
47 |
else: |
48 |
ufc_path_default=None |
49 |
|
50 |
if os.path.isdir('/usr/local/include') and os.path.isdir('/usr/local/lib'): |
51 |
netCDF_path_default='/usr/local/include' |
52 |
netCDF_lib_path_default='/usr/local/lib' |
53 |
netCDF_libs_cxx_default=[ 'netcdf_c++', 'netcdf'] |
54 |
else: |
55 |
netCDF_path_default=None |
56 |
netCDF_lib_path_default=None |
57 |
netCDF_libs_cxx_default=None |
58 |
# Default options and options help text |
59 |
# These are defaults and can be overridden using command line arguments or an options file. |
60 |
# if the options_file or ARGUMENTS do not exist then the ones listed as default here are used |
61 |
# DO NOT CHANGE THEM HERE |
62 |
|
63 |
# Where to install? |
64 |
prefix = ARGUMENTS.get('prefix', Dir('#.').abspath) |
65 |
|
66 |
if ARGUMENTS.get('options_file',0): |
67 |
options_file = ARGUMENTS.get('options_file',0) |
68 |
else: |
69 |
from string import ascii_letters,digits |
70 |
hostname="" |
71 |
for s in socket.gethostname().split('.')[0]: |
72 |
if s in ascii_letters+digits: |
73 |
hostname+=s |
74 |
else: |
75 |
hostname+="_" |
76 |
options_file = "scons/"+hostname+"_options.py" |
77 |
if os.path.isfile(options_file): |
78 |
print "option file is ",options_file,"." |
79 |
else: |
80 |
print "option file is ",options_file, "(not present)." |
81 |
|
82 |
opts = Options(options_file, ARGUMENTS) |
83 |
opts.AddOptions( |
84 |
# Where to install esys stuff |
85 |
('incinstall', 'where the esys headers will be installed', prefix+'/include'), |
86 |
('libinstall', 'where the esys libraries will be installed', prefix+'/lib'), |
87 |
('pyinstall', 'where the esys python modules will be installed', prefix), |
88 |
('src_zipfile', 'the source zip file will be installed.', prefix+"/release/escript_src.zip"), |
89 |
('test_zipfile', 'the test zip file will be installed.', prefix+"/release/escript_tests.zip"), |
90 |
('src_tarfile', 'the source tar file will be installed.', prefix+"/release/escript_src.tar.gz"), |
91 |
('test_tarfile', 'the test tar file will be installed.', prefix+"/release/escript_tests.tar.gz"), |
92 |
('examples_tarfile', 'the examples tar file will be installed.', prefix+"/release/doc/escript_examples.tar.gz"), |
93 |
('examples_zipfile', 'the examples zip file will be installed.', prefix+"/release/doc/escript_examples.zip"), |
94 |
('guide_pdf', 'name of the user guide in pdf format', prefix+"/release/doc/user/guide.pdf"), |
95 |
('api_epydoc', 'name of the epydoc api docs directory',prefix+"/release/doc/epydoc"), |
96 |
('guide_html', 'name of the directory for user guide in html format', prefix+"/release/doc/user/html"), |
97 |
# Compilation options |
98 |
BoolOption('dodebug', 'Do you want a debug build?', 'no'), |
99 |
('options_file', "Optional file containing preferred options. Ignored if it doesn't exist (default: scons/hostname_options.py)", options_file), |
100 |
('cc_defines','C/C++ defines to use', None), |
101 |
('cc_flags','C compiler flags to use (Release build)', '-O3 -std=c99 -ffast-math -fpic -Wno-unknown-pragmas -ansi -pedantic-errors'), |
102 |
('cc_flags_debug', 'C compiler flags to use (Debug build)', '-g -O0 -ffast-math -std=c99 -fpic -Wno-unknown-pragmas -ansi -pedantic-errors'), |
103 |
('cxx_flags', 'C++ compiler flags to use (Release build)', '--no-warn -ansi'), |
104 |
('cxx_flags_debug', 'C++ compiler flags to use (Debug build)', '--no-warn -ansi -DDOASSERT -DDOPROF -DHAVE_MPI_OFFSET'), |
105 |
('omp_flags', 'OpenMP compiler flags to use (Release build)', ''), |
106 |
('omp_flags_debug', 'OpenMP compiler flags to use (Debug build)', ''), |
107 |
('ar_flags', 'Static library archiver flags to use', None), |
108 |
('sys_libs', 'System libraries to link with', [ 'pthread' , 'rt' ] ), |
109 |
('tar_flags','flags for zip files','-c -z'), |
110 |
# MKL |
111 |
PathOption('mkl_path', 'Path to MKL includes', None), |
112 |
PathOption('mkl_lib_path', 'Path to MKL libs', None), |
113 |
('mkl_libs', 'MKL libraries to link with', None), |
114 |
# TRILINOS |
115 |
PathOption('trilinos_path', 'Path to TRILINOS includes', None), |
116 |
PathOption('trilinos_lib_path', 'Path to TRILINOS libs', None), |
117 |
('trilinos_libs', 'TRILINOS libraries to link with', None), |
118 |
# SCSL |
119 |
PathOption('scsl_path', 'Path to SCSL includes', None), |
120 |
PathOption('scsl_lib_path', 'Path to SCSL libs', None), |
121 |
('scsl_libs', 'SCSL libraries to link with', None), |
122 |
# UMFPACK |
123 |
PathOption('ufc_path', 'Path to UFconfig includes', ufc_path_default), |
124 |
PathOption('umf_path', 'Path to UMFPACK includes', umf_path_default), |
125 |
PathOption('umf_lib_path', 'Path to UMFPACK libs', umf_lib_path_default), |
126 |
('umf_libs', 'UMFPACK libraries to link with', umf_libs_default), |
127 |
# AMD (used by UMFPACK) |
128 |
PathOption('amd_path', 'Path to AMD includes', amd_path_default), |
129 |
PathOption('amd_lib_path', 'Path to AMD libs', amd_lib_path_default), |
130 |
('amd_libs', 'AMD libraries to link with', amd_libs_default), |
131 |
# BLAS |
132 |
PathOption('blas_path', 'Path to BLAS includes', None), |
133 |
PathOption('blas_lib_path', 'Path to BLAS libs', None), |
134 |
('blas_libs', 'BLAS libraries to link with', None), |
135 |
# netCDF |
136 |
('useNetCDF', 'switch on/off the usage of netCDF', 'yes'), |
137 |
PathOption('netCDF_path', 'Path to netCDF includes', netCDF_path_default), |
138 |
PathOption('netCDF_lib_path', 'Path to netCDF libs', netCDF_lib_path_default), |
139 |
('netCDF_libs_cxx', 'netCDF C++ libraries to link with', netCDF_libs_cxx_default), |
140 |
# Python |
141 |
# locations of include files for python |
142 |
PathOption('python_path', 'Path to Python includes', '/usr/include/python%s.%s'%(sys.version_info[0],sys.version_info[1])), |
143 |
PathOption('python_lib_path', 'Path to Python libs', '/usr/lib'), |
144 |
('python_libs', 'Python libraries to link with', ["python%s.%s"%(sys.version_info[0],sys.version_info[1]),]), |
145 |
# Boost |
146 |
PathOption('boost_path', 'Path to Boost includes', '/usr/include'), |
147 |
PathOption('boost_lib_path', 'Path to Boost libs', '/usr/lib'), |
148 |
('boost_libs', 'Boost libraries to link with', ['boost_python',]), |
149 |
# Doc building |
150 |
# PathOption('doxygen_path', 'Path to Doxygen executable', None), |
151 |
# PathOption('epydoc_path', 'Path to Epydoc executable', None), |
152 |
# PAPI |
153 |
PathOption('papi_path', 'Path to PAPI includes', None), |
154 |
PathOption('papi_lib_path', 'Path to PAPI libs', None), |
155 |
('papi_libs', 'PAPI libraries to link with', None), |
156 |
# MPI |
157 |
BoolOption('useMPI', 'Compile parallel version using MPI', 'no'), |
158 |
('MPICH_IGNORE_CXX_SEEK', 'name of macro to ignore MPI settings of C++ SEEK macro (for MPICH)' , 'MPICH_IGNORE_CXX_SEEK'), |
159 |
PathOption('mpi_path', 'Path to MPI includes', '/usr/local/include'), |
160 |
PathOption('mpi_lib_path', 'Path to MPI libs (needs to be added to the LD_LIBRARY_PATH)','/usr/local/lib'), |
161 |
('mpi_libs', 'MPI libraries to link with (needs to be shared!)', [ 'mpich' , 'pthread', 'rt' ]), |
162 |
) |
163 |
# Note: On the Altix the intel compilers are not automatically |
164 |
# detected by scons intelc.py script. The Altix has a different directory |
165 |
# path and in some locations the "modules" facility is used to support |
166 |
# multiple compiler versions. This forces the need to import the users PATH |
167 |
# environment which isn't the "scons way" |
168 |
# 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) |
169 |
# FIXME: Perhaps a modification to intelc.py will allow better support for ia64 on altix |
170 |
|
171 |
if os.name != "nt" and os.uname()[4]=='ia64': |
172 |
env = Environment(tools = ['default', 'intelc'], options = opts) |
173 |
if env['CXX'] == 'icpc': |
174 |
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 |
175 |
elif os.name == "nt": |
176 |
env = Environment(tools = ['default', 'msvc'], options = opts) |
177 |
#env = Environment(tools = ['default', 'intelc'], options = opts) |
178 |
else: |
179 |
env = Environment(tools = ['default'], options = opts) |
180 |
# Initialise Scons Build Environment |
181 |
# check for user environment variables we are interested in |
182 |
try: |
183 |
python_path = os.environ['PYTHONPATH'] |
184 |
env['ENV']['PYTHONPATH'] = python_path |
185 |
except KeyError: |
186 |
python_path = '' |
187 |
|
188 |
try: |
189 |
path = os.environ['PATH'] |
190 |
env['ENV']['PATH'] = path |
191 |
except KeyError: |
192 |
path = '' |
193 |
try: |
194 |
ld_library_path = os.environ['LD_LIBRARY_PATH'] |
195 |
env['ENV']['LD_LIBRARY_PATH'] = ld_library_path |
196 |
except KeyError: |
197 |
ld_library_path = '' |
198 |
|
199 |
|
200 |
# Setup help for options |
201 |
Help(opts.GenerateHelpText(env)) |
202 |
|
203 |
# Add some customer builders |
204 |
py_builder = Builder(action = scons_extensions.build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
205 |
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
206 |
|
207 |
if env['PLATFORM'] == "win32": |
208 |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', src_suffix='.exe', single_source=True) |
209 |
else: |
210 |
runUnitTest_builder = Builder(action = scons_extensions.runUnitTest, suffix = '.passed', single_source=True) |
211 |
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
212 |
|
213 |
runPyUnitTest_builder = Builder(action = scons_extensions.runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
214 |
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
215 |
|
216 |
# Convert the options which are held in environment variable into python variables for ease of handling and configure compilation options |
217 |
try: |
218 |
incinstall = env['incinstall'] |
219 |
env.Append(CPPPATH = [incinstall,]) |
220 |
except KeyError: |
221 |
incinstall = None |
222 |
try: |
223 |
libinstall = env['libinstall'] |
224 |
env.Append(LIBPATH = [libinstall,]) # ksteube adds -L for building of libescript.so libfinley.so escriptcpp.so finleycpp.so |
225 |
env.PrependENVPath('LD_LIBRARY_PATH', libinstall) |
226 |
if env['PLATFORM'] == "win32": |
227 |
env.PrependENVPath('PATH', libinstall) |
228 |
env.PrependENVPath('PATH', env['boost_lib_path']) |
229 |
except KeyError: |
230 |
libinstall = None |
231 |
try: |
232 |
pyinstall = env['pyinstall']+'/esys' # all targets will install into pyinstall/esys but PYTHONPATH points at straight pyinstall so you go import esys.escript etc |
233 |
env.PrependENVPath('PYTHONPATH', env['pyinstall']) |
234 |
except KeyError: |
235 |
pyinstall = None |
236 |
try: |
237 |
dodebug = env['dodebug'] |
238 |
except KeyError: |
239 |
dodebug = None |
240 |
try: |
241 |
useMPI = env['useMPI'] |
242 |
except KeyError: |
243 |
useMPI = None |
244 |
try: |
245 |
cc_defines = env['cc_defines'] |
246 |
env.Append(CPPDEFINES = cc_defines) |
247 |
except KeyError: |
248 |
pass |
249 |
|
250 |
# mpi? |
251 |
if useMPI: |
252 |
env.Append(CPPDEFINES=['PASO_MPI',]) |
253 |
env.Append(CDEFINES=['PASO_MPI',]) |
254 |
|
255 |
try: |
256 |
omp_flags = env['omp_flags'] |
257 |
omp_flags_debug = env['omp_flags_debug'] |
258 |
except KeyError: |
259 |
print "omp_flags = ''" |
260 |
print "omp_flags_debug = ''" |
261 |
|
262 |
# OpenMP and MPI conflict on the Altix, maybe can fix this for mixed mode programming |
263 |
# This disables both OpenMP and MPI on all systems but is an OK fix for now |
264 |
if useMPI: |
265 |
omp_flags = '' |
266 |
omp_flags_debug = '' |
267 |
|
268 |
if dodebug: |
269 |
try: |
270 |
flags = env['cc_flags_debug'] + ' ' + omp_flags_debug |
271 |
env.Append(CCFLAGS = flags) |
272 |
except KeyError: |
273 |
pass |
274 |
else: |
275 |
try: |
276 |
flags = env['cc_flags'] + ' ' + omp_flags |
277 |
env.Append(CCFLAGS = flags) |
278 |
except KeyError: |
279 |
pass |
280 |
if dodebug: |
281 |
try: |
282 |
flags = env['cxx_flags_debug'] |
283 |
env.Append(CXXFLAGS = flags) |
284 |
except KeyError: |
285 |
pass |
286 |
else: |
287 |
try: |
288 |
flags = env['cxx_flags'] |
289 |
env.Append(CXXFLAGS = flags) |
290 |
except KeyError: |
291 |
pass |
292 |
try: |
293 |
flags = env['ar_flags'] |
294 |
env.Append(ARFLAGS = flags) |
295 |
except KeyError: |
296 |
ar_flags = None |
297 |
try: |
298 |
sys_libs = env['sys_libs'] |
299 |
except KeyError: |
300 |
sys_libs = [] |
301 |
|
302 |
try: |
303 |
tar_flags = env['tar_flags'] |
304 |
env.Replace(TARFLAGS = tar_flags) |
305 |
except KeyError: |
306 |
pass |
307 |
|
308 |
|
309 |
# ============= set mkl (but only of no MPI) ===================================== |
310 |
if not useMPI: |
311 |
try: |
312 |
includes = env['mkl_path'] |
313 |
env.Append(CPPPATH = [includes,]) |
314 |
except KeyError: |
315 |
pass |
316 |
|
317 |
try: |
318 |
lib_path = env['mkl_lib_path'] |
319 |
env.Append(LIBPATH = [lib_path,]) |
320 |
except KeyError: |
321 |
pass |
322 |
|
323 |
try: |
324 |
mkl_libs = env['mkl_libs'] |
325 |
except KeyError: |
326 |
mkl_libs = [] |
327 |
else: |
328 |
mkl_libs = [] |
329 |
|
330 |
# ============= set scsl (but only of no MPI) ===================================== |
331 |
if not useMPI: |
332 |
try: |
333 |
includes = env['scsl_path'] |
334 |
env.Append(CPPPATH = [includes,]) |
335 |
except KeyError: |
336 |
pass |
337 |
|
338 |
try: |
339 |
lib_path = env['scsl_lib_path'] |
340 |
env.Append(LIBPATH = [lib_path,]) |
341 |
except KeyError: |
342 |
pass |
343 |
|
344 |
try: |
345 |
scsl_libs = env['scsl_libs'] |
346 |
except KeyError: |
347 |
scsl_libs = [ ] |
348 |
|
349 |
else: |
350 |
scsl_libs = [] |
351 |
|
352 |
# ============= set TRILINOS (but only with MPI) ===================================== |
353 |
if useMPI: |
354 |
try: |
355 |
includes = env['trilinos_path'] |
356 |
env.Append(CPPPATH = [includes,]) |
357 |
except KeyError: |
358 |
pass |
359 |
|
360 |
try: |
361 |
lib_path = env['trilinos_lib_path'] |
362 |
env.Append(LIBPATH = [lib_path,]) |
363 |
except KeyError: |
364 |
pass |
365 |
|
366 |
try: |
367 |
trilinos_libs = env['trilinos_libs'] |
368 |
except KeyError: |
369 |
trilinos_libs = [] |
370 |
else: |
371 |
trilinos_libs = [] |
372 |
|
373 |
|
374 |
# ============= set umfpack (but only without MPI) ===================================== |
375 |
umfpack_libs=[ ] |
376 |
if not useMPI: |
377 |
try: |
378 |
includes = env['umf_path'] |
379 |
env.Append(CPPPATH = [includes,]) |
380 |
except KeyError: |
381 |
pass |
382 |
|
383 |
try: |
384 |
lib_path = env['umf_lib_path'] |
385 |
env.Append(LIBPATH = [lib_path,]) |
386 |
except KeyError: |
387 |
pass |
388 |
|
389 |
try: |
390 |
umf_libs = env['umf_libs'] |
391 |
umfpack_libs+=umf_libs |
392 |
except KeyError: |
393 |
pass |
394 |
|
395 |
try: |
396 |
includes = env['ufc_path'] |
397 |
env.Append(CPPPATH = [includes,]) |
398 |
except KeyError: |
399 |
pass |
400 |
|
401 |
try: |
402 |
includes = env['amd_path'] |
403 |
env.Append(CPPPATH = [includes,]) |
404 |
except KeyError: |
405 |
pass |
406 |
|
407 |
try: |
408 |
lib_path = env['amd_lib_path'] |
409 |
env.Append(LIBPATH = [lib_path,]) |
410 |
except KeyError: |
411 |
pass |
412 |
|
413 |
try: |
414 |
amd_libs = env['amd_libs'] |
415 |
umfpack_libs+=amd_libs |
416 |
except KeyError: |
417 |
pass |
418 |
|
419 |
# ============= set blas ===================================== |
420 |
try: |
421 |
includes = env['blas_path'] |
422 |
env.Append(CPPPATH = [includes,]) |
423 |
except KeyError: |
424 |
pass |
425 |
|
426 |
try: |
427 |
lib_path = env['blas_lib_path'] |
428 |
env.Append(LIBPATH = [lib_path,]) |
429 |
except KeyError: |
430 |
pass |
431 |
|
432 |
try: |
433 |
blas_libs = env['blas_libs'] |
434 |
except KeyError: |
435 |
blas_libs = [ ] |
436 |
|
437 |
# ============= set netcdf ===================================== |
438 |
try: |
439 |
useNetCDF = env['useNetCDF'] |
440 |
except KeyError: |
441 |
useNetCDF = 'yes' |
442 |
pass |
443 |
|
444 |
if not useNetCDF == 'yes': |
445 |
print "Warning: Installation is not configured with netCDF. Some I/O function may not be available." |
446 |
|
447 |
if useNetCDF == 'yes': |
448 |
try: |
449 |
includes = env['netCDF_path'] |
450 |
env.Append(CPPPATH = [includes,]) |
451 |
except KeyError: |
452 |
pass |
453 |
|
454 |
try: |
455 |
lib_path = env['netCDF_lib_path'] |
456 |
env.Append(LIBPATH = [lib_path,]) |
457 |
except KeyError: |
458 |
pass |
459 |
|
460 |
try: |
461 |
netCDF_libs_cxx = env['netCDF_libs_cxx'] |
462 |
except KeyError: |
463 |
netCDF_libs_cxx = [ ] |
464 |
else: |
465 |
netCDF_libs_cxx=[ ] |
466 |
|
467 |
# ============= set boost ===================================== |
468 |
try: |
469 |
includes = env['boost_path'] |
470 |
env.Append(CPPPATH = [includes,]) |
471 |
except KeyError: |
472 |
pass |
473 |
try: |
474 |
lib_path = env['boost_lib_path'] |
475 |
env.Append(LIBPATH = [lib_path,]) |
476 |
except KeyError: |
477 |
pass |
478 |
try: |
479 |
boost_libs = env['boost_libs'] |
480 |
except KeyError: |
481 |
boost_libs = [ ] |
482 |
# ============= set python ===================================== |
483 |
try: |
484 |
includes = env['python_path'] |
485 |
env.Append(CPPPATH = [includes,]) |
486 |
except KeyError: |
487 |
pass |
488 |
try: |
489 |
lib_path = env['python_lib_path'] |
490 |
env.Append(LIBPATH = [lib_path,]) |
491 |
except KeyError: |
492 |
pass |
493 |
try: |
494 |
python_libs = env['python_libs'] |
495 |
except KeyError: |
496 |
python_libs = [] |
497 |
|
498 |
# ============= set mpi ===================================== |
499 |
if useMPI: |
500 |
try: |
501 |
includes = env['mpi_path'] |
502 |
env.Append(CPPPATH = [includes,]) |
503 |
except KeyError: |
504 |
pass |
505 |
try: |
506 |
lib_path = env['mpi_lib_path'] |
507 |
env.Append(LIBPATH = [lib_path,]) |
508 |
except KeyError: |
509 |
pass |
510 |
try: |
511 |
mpi_libs = env['mpi_libs'] |
512 |
except KeyError: |
513 |
mpi_libs = [] |
514 |
try: |
515 |
mpich_ignore_cxx_seek=env['MPICH_IGNORE_CXX_SEEK'] |
516 |
env.Append(CPPDEFINES = [ mpich_ignore_cxx_seek ] ) |
517 |
except KeyError: |
518 |
pass |
519 |
|
520 |
else: |
521 |
|
522 |
mpi_libs=[] |
523 |
# ============= set papi ===================================== |
524 |
try: |
525 |
includes = env['papi_path'] |
526 |
env.Append(CPPPATH = [includes,]) |
527 |
except KeyError: |
528 |
pass |
529 |
try: |
530 |
lib_path = env['papi_lib_path'] |
531 |
env.Append(LIBPATH = [lib_path,]) |
532 |
except KeyError: |
533 |
pass |
534 |
try: |
535 |
papi_libs = env['papi_libs'] |
536 |
except KeyError: |
537 |
papi_libs = None |
538 |
|
539 |
|
540 |
# ============= and some helpers ===================================== |
541 |
try: |
542 |
doxygen_path = env['doxygen_path'] |
543 |
except KeyError: |
544 |
doxygen_path = None |
545 |
try: |
546 |
epydoc_path = env['epydoc_path'] |
547 |
except KeyError: |
548 |
epydoc_path = None |
549 |
try: |
550 |
src_zipfile = env.File(env['src_zipfile']) |
551 |
except KeyError: |
552 |
src_zipfile = None |
553 |
try: |
554 |
test_zipfile = env.File(env['test_zipfile']) |
555 |
except KeyError: |
556 |
test_zipfile = None |
557 |
try: |
558 |
examples_zipfile = env.File(env['examples_zipfile']) |
559 |
except KeyError: |
560 |
examples_zipfile = None |
561 |
|
562 |
try: |
563 |
src_tarfile = env.File(env['src_tarfile']) |
564 |
except KeyError: |
565 |
src_tarfile = None |
566 |
try: |
567 |
test_tarfile = env.File(env['test_tarfile']) |
568 |
except KeyError: |
569 |
test_tarfile = None |
570 |
try: |
571 |
examples_tarfile = env.File(env['examples_tarfile']) |
572 |
except KeyError: |
573 |
examples_tarfile = None |
574 |
|
575 |
try: |
576 |
guide_pdf = env.File(env['guide_pdf']) |
577 |
except KeyError: |
578 |
guide_pdf = None |
579 |
|
580 |
try: |
581 |
guide_html_index = env.File('index.htm',env['guide_html']) |
582 |
except KeyError: |
583 |
guide_html_index = None |
584 |
|
585 |
try: |
586 |
api_epydoc = env.Dir(env['api_epydoc']) |
587 |
except KeyError: |
588 |
api_epydoc = None |
589 |
|
590 |
|
591 |
|
592 |
# Zipgets |
593 |
|
594 |
env.Default(libinstall) |
595 |
env.Default(incinstall) |
596 |
env.Default(pyinstall) |
597 |
env.Alias('release_src',[ src_zipfile, src_tarfile ]) |
598 |
env.Alias('release_tests',[ test_zipfile, test_tarfile]) |
599 |
env.Alias('release_examples',[ examples_zipfile, examples_tarfile]) |
600 |
env.Alias('api_epydoc',api_epydoc) |
601 |
env.Alias('guide_pdf', guide_pdf) |
602 |
env.Alias('docs',[ 'release_examples', 'guide_pdf', guide_html_index, api_epydoc]) |
603 |
env.Alias('release', ['release_src', 'release_tests', 'docs']) |
604 |
env.Alias('build_tests') # target to build all C++ tests |
605 |
env.Alias('build_py_tests') # target to build all python tests |
606 |
env.Alias('build_all_tests', [ 'build_tests', 'build_py_tests' ] ) # target to build all python tests |
607 |
env.Alias('run_tests', 'build_tests') # target to run all C++ test |
608 |
env.Alias('py_tests', 'build_py_tests') # taget to run all released python tests |
609 |
env.Alias('all_tests', ['run_tests', 'py_tests']) # target to run all C++ and released python tests |
610 |
|
611 |
# Python install - esys __init__.py |
612 |
init_target = env.Command(pyinstall+'/__init__.py', None, Touch('$TARGET')) |
613 |
env.Alias(init_target) |
614 |
|
615 |
# Allow sconscripts to see the env |
616 |
Export(["env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umfpack_libs", |
617 |
"blas_libs", "netCDF_libs_cxx", "trilinos_libs", "useNetCDF", "mpi_libs", "boost_libs", "python_libs", |
618 |
"doxygen_path", "epydoc_path", "papi_libs", |
619 |
"sys_libs", "test_zipfile", "src_zipfile", "test_tarfile", "src_tarfile", "examples_tarfile", "examples_zipfile", |
620 |
"guide_pdf", "guide_html_index", "api_epydoc", "useMPI"]) |
621 |
|
622 |
# End initialisation section |
623 |
# Begin configuration section |
624 |
# adds this file and the scons option directore to the source tar |
625 |
release_srcfiles=[env.File('SConstruct'),]+[ env.File(x) for x in glob.glob('scons/*.py') ] |
626 |
release_testfiles=[env.File('README_TESTS'),] |
627 |
env.Zip(src_zipfile, release_srcfiles) |
628 |
env.Zip(test_zipfile, release_testfiles) |
629 |
env.Tar(src_tarfile, release_srcfiles) |
630 |
env.Tar(test_tarfile, release_testfiles) |
631 |
|
632 |
# Insert new components to be build here |
633 |
# FIXME: might be nice to replace this verbosity with a list of targets and some |
634 |
# FIXME: nifty python to create the lengthy but very similar env.Sconscript lines |
635 |
# Third Party libraries |
636 |
env.SConscript(dirs = ['tools/CppUnitTest/src'], build_dir='build/$PLATFORM/tools/CppUnitTest', duplicate=0) |
637 |
# C/C++ Libraries |
638 |
env.SConscript(dirs = ['paso/src'], build_dir='build/$PLATFORM/paso', duplicate=0) |
639 |
# bruce is removed for now as it doesn't really do anything |
640 |
# env.SConscript(dirs = ['bruce/src'], build_dir='build/$PLATFORM/bruce', duplicate=0) |
641 |
env.SConscript(dirs = ['escript/src'], build_dir='build/$PLATFORM/escript', duplicate=0) |
642 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
643 |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
644 |
env.SConscript(dirs = ['modellib/py_src'], build_dir='build/$PLATFORM/modellib', duplicate=0) |
645 |
env.SConscript(dirs = ['doc'], build_dir='build/$PLATFORM/doc', duplicate=0) |
646 |
env.SConscript(dirs = ['pyvisi/py_src'], build_dir='build/$PLATFORM/pyvisi', duplicate=0) |
647 |
env.SConscript(dirs = ['pycad/py_src'], build_dir='build/$PLATFORM/pycad', duplicate=0) |
648 |
|
649 |
# added by Ben Cumming |
650 |
env.SConscript(dirs = ['pythonMPI/src'], build_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
651 |
#env.SConscript(dirs = ['../test'], build_dir='../test/build', duplicate=0) |