1 |
esysroot = Dir('#.') |
######################################################## |
2 |
Export(["esysroot"]) |
# |
3 |
|
# Copyright (c) 2003-2010 by University of Queensland |
4 |
|
# Earth Systems Science Computational Center (ESSCC) |
5 |
|
# http://www.uq.edu.au/esscc |
6 |
|
# |
7 |
|
# Primary Business: Queensland, Australia |
8 |
|
# Licensed under the Open Software License version 3.0 |
9 |
|
# http://www.opensource.org/licenses/osl-3.0.php |
10 |
|
# |
11 |
|
######################################################## |
12 |
|
|
13 |
libinstall = Dir('#lib') |
EnsureSConsVersion(0,98,1) |
14 |
Export(["libinstall"]) |
EnsurePythonVersion(2,5) |
15 |
|
|
16 |
|
import sys, os, platform, re |
17 |
|
from distutils import sysconfig |
18 |
|
from site_init import * |
19 |
|
|
20 |
|
# Version number to check for in options file. Increment when new features are |
21 |
|
# added or existing options changed. |
22 |
|
REQUIRED_OPTS_VERSION=200 |
23 |
|
|
24 |
|
# MS Windows support, many thanks to PH |
25 |
|
IS_WINDOWS = (os.name == 'nt') |
26 |
|
|
27 |
|
########################## Determine options file ############################ |
28 |
|
# 1. command line |
29 |
|
# 2. scons/<hostname>_options.py |
30 |
|
# 3. name as part of a cluster |
31 |
|
options_file=ARGUMENTS.get('options_file', None) |
32 |
|
if not options_file: |
33 |
|
ext_dir = os.path.join(os.getcwd(), 'scons') |
34 |
|
hostname = platform.node().split('.')[0] |
35 |
|
for name in hostname, effectiveName(hostname): |
36 |
|
mangledhostname = re.sub('[^0-9a-zA-Z]', '_', hostname) |
37 |
|
options_file = os.path.join(ext_dir, mangledhostname+'_options.py') |
38 |
|
if os.path.isfile(options_file): break |
39 |
|
|
40 |
|
if not os.path.isfile(options_file): |
41 |
|
print("\nWARNING:\nOptions file %s" % options_file) |
42 |
|
print("not found! Default options will be used which is most likely suboptimal.") |
43 |
|
print("It is recommended that you copy one of the TEMPLATE files in the scons/") |
44 |
|
print("subdirectory and customize it to your needs.\n") |
45 |
|
options_file = None |
46 |
|
|
47 |
|
############################### Build options ################################ |
48 |
|
|
49 |
|
default_prefix='/usr' |
50 |
|
mpi_flavours=('none', 'MPT', 'MPICH', 'MPICH2', 'OPENMPI', 'INTELMPI') |
51 |
|
lapack_flavours=('none', 'clapack', 'mkl') |
52 |
|
|
53 |
|
vars = Variables(options_file, ARGUMENTS) |
54 |
|
vars.AddVariables( |
55 |
|
PathVariable('options_file', 'Path to options file', options_file, PathVariable.PathIsFile), |
56 |
|
PathVariable('prefix', 'Installation prefix', Dir('#.').abspath, PathVariable.PathIsDirCreate), |
57 |
|
BoolVariable('verbose', 'Output full compile/link lines', False), |
58 |
|
# Compiler/Linker options |
59 |
|
('cc', 'Path to C compiler', 'default'), |
60 |
|
('cxx', 'Path to C++ compiler', 'default'), |
61 |
|
('cc_flags', 'Base C/C++ compiler flags', 'default'), |
62 |
|
('cc_optim', 'Additional C/C++ flags for a non-debug build', 'default'), |
63 |
|
('cc_debug', 'Additional C/C++ flags for a debug build', 'default'), |
64 |
|
('cc_extra', 'Extra C compiler flags', ''), |
65 |
|
('cxx_extra', 'Extra C++ compiler flags', ''), |
66 |
|
('ld_extra', 'Extra linker flags', ''), |
67 |
|
BoolVariable('werror','Treat compiler warnings as errors', True), |
68 |
|
BoolVariable('debug', 'Compile with debug flags', False), |
69 |
|
BoolVariable('openmp', 'Compile parallel version using OpenMP', False), |
70 |
|
('omp_flags', 'OpenMP compiler flags', 'default'), |
71 |
|
('omp_ldflags', 'OpenMP linker flags', 'default'), |
72 |
|
# Mandatory libraries |
73 |
|
('boost_prefix', 'Prefix/Paths of boost installation', default_prefix), |
74 |
|
('boost_libs', 'Boost libraries to link with', ['boost_python-mt']), |
75 |
|
# Optional libraries and options |
76 |
|
EnumVariable('mpi', 'Compile parallel version using MPI flavour', 'none', allowed_values=mpi_flavours), |
77 |
|
('mpi_prefix', 'Prefix/Paths of MPI installation', default_prefix), |
78 |
|
('mpi_libs', 'MPI shared libraries to link with', ['mpi']), |
79 |
|
BoolVariable('netcdf', 'Enable netCDF file support', False), |
80 |
|
('netcdf_prefix', 'Prefix/Paths of netCDF installation', default_prefix), |
81 |
|
('netcdf_libs', 'netCDF libraries to link with', ['netcdf_c++', 'netcdf']), |
82 |
|
BoolVariable('parmetis', 'Enable ParMETIS (requires MPI)', False), |
83 |
|
('parmetis_prefix', 'Prefix/Paths of ParMETIS installation', default_prefix), |
84 |
|
('parmetis_libs', 'ParMETIS libraries to link with', ['parmetis', 'metis']), |
85 |
|
BoolVariable('papi', 'Enable PAPI', False), |
86 |
|
('papi_prefix', 'Prefix/Paths to PAPI installation', default_prefix), |
87 |
|
('papi_libs', 'PAPI libraries to link with', ['papi']), |
88 |
|
BoolVariable('papi_instrument_solver', 'Use PAPI to instrument each iteration of the solver', False), |
89 |
|
BoolVariable('mkl', 'Enable the Math Kernel Library', False), |
90 |
|
('mkl_prefix', 'Prefix/Paths to MKL installation', default_prefix), |
91 |
|
('mkl_libs', 'MKL libraries to link with', ['mkl_solver','mkl_em64t','guide','pthread']), |
92 |
|
BoolVariable('umfpack', 'Enable UMFPACK', False), |
93 |
|
('umfpack_prefix', 'Prefix/Paths to UMFPACK installation', default_prefix), |
94 |
|
('umfpack_libs', 'UMFPACK libraries to link with', ['umfpack']), |
95 |
|
EnumVariable('lapack', 'Set LAPACK flavour', 'none', allowed_values=lapack_flavours), |
96 |
|
('lapack_prefix', 'Prefix/Paths to LAPACK installation', default_prefix), |
97 |
|
('lapack_libs', 'LAPACK libraries to link with', []), |
98 |
|
BoolVariable('silo', 'Enable the Silo file format in weipa', False), |
99 |
|
('silo_prefix', 'Prefix/Paths to Silo installation', default_prefix), |
100 |
|
('silo_libs', 'Silo libraries to link with', ['siloh5', 'hdf5']), |
101 |
|
BoolVariable('visit', 'Enable the VisIt simulation interface', False), |
102 |
|
('visit_prefix', 'Prefix/Paths to VisIt installation', default_prefix), |
103 |
|
('visit_libs', 'VisIt libraries to link with', ['simV2']), |
104 |
|
BoolVariable('pyvisi', 'Enable pyvisi (deprecated, requires VTK module)', False), |
105 |
|
# Advanced settings |
106 |
|
#dudley_assemble_flags = -funroll-loops to actually do something |
107 |
|
('dudley_assemble_flags', 'compiler flags for some dudley optimisations', ''), |
108 |
|
# To enable passing function pointers through python |
109 |
|
BoolVariable('iknowwhatimdoing', 'Allow non-standard C', False), |
110 |
|
# An option for specifying the compiler tools (see windows branch) |
111 |
|
('tools_names', 'Compiler tools to use', ['default']), |
112 |
|
('env_export', 'Environment variables to be passed to tools',[]), |
113 |
|
EnumVariable('forcelazy', 'For testing use only - set the default value for autolazy', 'leave_alone', allowed_values=('leave_alone', 'on', 'off')), |
114 |
|
EnumVariable('forcecollres', 'For testing use only - set the default value for force resolving collective ops', 'leave_alone', allowed_values=('leave_alone', 'on', 'off')), |
115 |
|
# finer control over library building, intel aggressive global optimisation |
116 |
|
# works with dynamic libraries on windows. |
117 |
|
('share_esysutils', 'Build a dynamic esysUtils library', False), |
118 |
|
('share_paso', 'Build a dynamic paso library', False), |
119 |
|
('sys_libs', 'Extra libraries to link with', []), |
120 |
|
('escript_opts_version', 'Version of options file (do not specify on command line)'), |
121 |
|
) |
122 |
|
|
123 |
|
##################### Create environment and help text ####################### |
124 |
|
|
125 |
|
# Intel's compiler uses regular expressions improperly and emits a warning |
126 |
|
# about failing to find the compilers. This warning can be safely ignored. |
127 |
|
|
128 |
|
# PATH is needed so the compiler, linker and tools are found if they are not |
129 |
|
# in default locations. |
130 |
|
env = Environment(tools = ['default'], options = vars, |
131 |
|
ENV = {'PATH': os.environ['PATH']}) |
132 |
|
if env['tools_names'] != 'default': |
133 |
|
env = Environment(tools = ['default'] + env['tools_names'], options = vars, |
134 |
|
ENV = {'PATH' : os.environ['PATH']}) |
135 |
|
|
136 |
|
if options_file: |
137 |
|
opts_valid=False |
138 |
|
if 'escript_opts_version' in env.Dictionary() and \ |
139 |
|
int(env['escript_opts_version']) >= REQUIRED_OPTS_VERSION: |
140 |
|
opts_valid=True |
141 |
|
if opts_valid: |
142 |
|
print("Using options in %s." % options_file) |
143 |
|
else: |
144 |
|
print("\nOptions file %s" % options_file) |
145 |
|
print("is outdated! Please update the file by examining one of the TEMPLATE") |
146 |
|
print("files in the scons/ subdirectory and setting escript_opts_version to %d.\n"%REQUIRED_OPTS_VERSION) |
147 |
|
Exit(1) |
148 |
|
|
149 |
|
# Generate help text (scons -h) |
150 |
|
Help(vars.GenerateHelpText(env)) |
151 |
|
|
152 |
|
# Check for superfluous options |
153 |
|
if len(vars.UnknownVariables())>0: |
154 |
|
for k in vars.UnknownVariables(): |
155 |
|
print("Unknown option '%s'" % k) |
156 |
|
Exit(1) |
157 |
|
|
158 |
|
#################### Make sure install directories exist ##################### |
159 |
|
|
160 |
|
prefix=Dir(env['prefix']).abspath |
161 |
|
env['incinstall'] = os.path.join(prefix, 'include') |
162 |
|
env['bininstall'] = os.path.join(prefix, 'bin') |
163 |
|
env['libinstall'] = os.path.join(prefix, 'lib') |
164 |
|
env['pyinstall'] = os.path.join(prefix, 'esys') |
165 |
|
if not os.path.isdir(env['bininstall']): |
166 |
|
os.makedirs(env['bininstall']) |
167 |
|
if not os.path.isdir(env['libinstall']): |
168 |
|
os.makedirs(env['libinstall']) |
169 |
|
if not os.path.isdir(env['pyinstall']): |
170 |
|
os.makedirs(env['pyinstall']) |
171 |
|
|
172 |
|
env.Append(CPPPATH = [env['incinstall']]) |
173 |
|
env.Append(LIBPATH = [env['libinstall']]) |
174 |
|
|
175 |
|
################# Fill in compiler options if not set above ################## |
176 |
|
|
177 |
|
if env['cc'] != 'default': env['CC']=env['cc'] |
178 |
|
if env['cxx'] != 'default': env['CXX']=env['cxx'] |
179 |
|
|
180 |
|
# version >=9 of intel C++ compiler requires use of icpc to link in C++ |
181 |
|
# runtimes (icc does not) |
182 |
|
if not IS_WINDOWS and os.uname()[4]=='ia64' and env['CXX']=='icpc': |
183 |
|
env['LINK'] = env['CXX'] |
184 |
|
|
185 |
|
# default compiler/linker options |
186 |
|
cc_flags = '' |
187 |
|
cc_optim = '' |
188 |
|
cc_debug = '' |
189 |
|
omp_flags = '' |
190 |
|
omp_ldflags = '' |
191 |
|
fatalwarning = '' # switch to turn warnings into errors |
192 |
|
sysheaderopt = '' # how to indicate that a header is a system header |
193 |
|
|
194 |
|
# env['CC'] might be a full path |
195 |
|
cc_name=os.path.basename(env['CC']) |
196 |
|
|
197 |
|
if cc_name == 'icc': |
198 |
|
# Intel compiler |
199 |
|
cc_flags = "-std=c99 -fPIC -wd161 -w1 -vec-report0 -DBLOCKTIMER -DCORE_ID1" |
200 |
|
cc_optim = "-O3 -ftz -IPF_ftlacc- -IPF_fma -fno-alias -ip" |
201 |
|
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
202 |
|
omp_flags = "-openmp -openmp_report0" |
203 |
|
omp_ldflags = "-openmp -openmp_report0 -lguide -lpthread" |
204 |
|
fatalwarning = "-Werror" |
205 |
|
elif cc_name[:3] == 'gcc': |
206 |
|
# GNU C on any system |
207 |
|
cc_flags = "-pedantic -Wall -fPIC -ffast-math -Wno-unknown-pragmas -DBLOCKTIMER -Wno-sign-compare -Wno-system-headers -Wno-long-long -Wno-strict-aliasing -finline-functions" |
208 |
|
cc_optim = "-O3" |
209 |
|
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
210 |
|
omp_flags = "-fopenmp" |
211 |
|
omp_ldflags = "-fopenmp" |
212 |
|
fatalwarning = "-Werror" |
213 |
|
sysheaderopt = "-isystem" |
214 |
|
elif cc_name == 'cl': |
215 |
|
# Microsoft Visual C on Windows |
216 |
|
cc_flags = "/EHsc /MD /GR /wd4068 /D_USE_MATH_DEFINES /DDLL_NETCDF" |
217 |
|
cc_optim = "/O2 /Op /W3" |
218 |
|
cc_debug = "/Od /RTCcsu /ZI /DBOUNDS_CHECK" |
219 |
|
fatalwarning = "/WX" |
220 |
|
elif cc_name == 'icl': |
221 |
|
# Intel C on Windows |
222 |
|
cc_flags = '/EHsc /GR /MD' |
223 |
|
cc_optim = '/fast /Oi /W3 /Qssp /Qinline-factor- /Qinline-min-size=0 /Qunroll' |
224 |
|
cc_debug = '/Od /RTCcsu /Zi /Y- /debug:all /Qtrapuv' |
225 |
|
omp_flags = '/Qvec-report0 /Qopenmp /Qopenmp-report0 /Qparallel' |
226 |
|
omp_ldflags = '/Qvec-report0 /Qopenmp /Qopenmp-report0 /Qparallel' |
227 |
|
|
228 |
|
# set defaults if not otherwise specified |
229 |
|
if env['cc_flags'] == 'default': env['cc_flags'] = cc_flags |
230 |
|
if env['cc_optim'] == 'default': env['cc_optim'] = cc_optim |
231 |
|
if env['cc_debug'] == 'default': env['cc_debug'] = cc_debug |
232 |
|
if env['omp_flags'] == 'default': env['omp_flags'] = omp_flags |
233 |
|
if env['omp_ldflags'] == 'default': env['omp_ldflags'] = omp_ldflags |
234 |
|
if env['cc_extra'] != '': env.Append(CFLAGS = env['cc_extra']) |
235 |
|
if env['cxx_extra'] != '': env.Append(CXXFLAGS = env['cxx_extra']) |
236 |
|
if env['ld_extra'] != '': env.Append(LINKFLAGS = env['ld_extra']) |
237 |
|
|
238 |
|
# set up the autolazy values |
239 |
|
if env['forcelazy'] == 'on': |
240 |
|
env.Append(CPPDEFINES=['FAUTOLAZYON']) |
241 |
|
elif env['forcelazy'] == 'off': |
242 |
|
env.Append(CPPDEFINES=['FAUTOLAZYOFF']) |
243 |
|
|
244 |
|
# set up the collective resolve values |
245 |
|
if env['forcecollres'] == 'on': |
246 |
|
env.Append(CPPDEFINES=['FRESCOLLECTON']) |
247 |
|
elif env['forcecollres'] == 'off': |
248 |
|
env.Append(CPPDEFINES=['FRESCOLLECTOFF']) |
249 |
|
|
250 |
|
# allow non-standard C if requested |
251 |
|
if env['iknowwhatimdoing']: |
252 |
|
env.Append(CPPDEFINES=['IKNOWWHATIMDOING']) |
253 |
|
|
254 |
|
# Disable OpenMP if no flags provided |
255 |
|
if env['openmp'] and env['omp_flags'] == '': |
256 |
|
print("OpenMP requested but no flags provided - disabling OpenMP!") |
257 |
|
env['openmp'] = False |
258 |
|
|
259 |
|
if env['openmp']: |
260 |
|
env.Append(CCFLAGS = env['omp_flags']) |
261 |
|
if env['omp_ldflags'] != '': env.Append(LINKFLAGS = env['omp_ldflags']) |
262 |
|
else: |
263 |
|
env['omp_flags']='' |
264 |
|
env['omp_ldflags']='' |
265 |
|
|
266 |
|
# add debug/non-debug compiler flags |
267 |
|
if env['debug']: |
268 |
|
env.Append(CCFLAGS = env['cc_debug']) |
269 |
|
else: |
270 |
|
env.Append(CCFLAGS = env['cc_optim']) |
271 |
|
|
272 |
|
# always add cc_flags |
273 |
|
env.Append(CCFLAGS = env['cc_flags']) |
274 |
|
|
275 |
|
# add system libraries |
276 |
|
env.AppendUnique(LIBS = env['sys_libs']) |
277 |
|
|
278 |
|
# Get the global Subversion revision number for the getVersion() method |
279 |
|
try: |
280 |
|
global_revision = os.popen('svnversion -n .').read() |
281 |
|
global_revision = re.sub(':.*', '', global_revision) |
282 |
|
global_revision = re.sub('[^0-9]', '', global_revision) |
283 |
|
if global_revision == '': global_revision='-2' |
284 |
|
except: |
285 |
|
global_revision = '-1' |
286 |
|
env['svn_revision']=global_revision |
287 |
|
env.Append(CPPDEFINES=['SVN_VERSION='+global_revision]) |
288 |
|
|
289 |
|
if IS_WINDOWS: |
290 |
|
if not env['share_esysutils']: |
291 |
|
env.Append(CPPDEFINES = ['ESYSUTILS_STATIC_LIB']) |
292 |
|
if not env['share_paso']: |
293 |
|
env.Append(CPPDEFINES = ['PASO_STATIC_LIB']) |
294 |
|
|
295 |
|
###################### Copy required environment vars ######################## |
296 |
|
|
297 |
|
# Windows doesn't use LD_LIBRARY_PATH but PATH instead |
298 |
|
if IS_WINDOWS: |
299 |
|
LD_LIBRARY_PATH_KEY='PATH' |
300 |
|
env['ENV']['LD_LIBRARY_PATH']='' |
301 |
|
else: |
302 |
|
LD_LIBRARY_PATH_KEY='LD_LIBRARY_PATH' |
303 |
|
|
304 |
|
# the following env variables are exported for the unit tests |
305 |
|
|
306 |
|
for key in 'OMP_NUM_THREADS', 'ESCRIPT_NUM_PROCS', 'ESCRIPT_NUM_NODES': |
307 |
|
try: |
308 |
|
env['ENV'][key] = os.environ[key] |
309 |
|
except KeyError: |
310 |
|
env['ENV'][key] = 1 |
311 |
|
|
312 |
|
env_export=env['env_export'] |
313 |
|
env_export.extend(['ESCRIPT_NUM_THREADS','ESCRIPT_HOSTFILE','DISPLAY','XAUTHORITY','PATH','HOME']) |
314 |
|
|
315 |
|
for key in set(env_export): |
316 |
|
try: |
317 |
|
env['ENV'][key] = os.environ[key] |
318 |
|
except KeyError: |
319 |
|
pass |
320 |
|
|
321 |
|
try: |
322 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, os.environ[LD_LIBRARY_PATH_KEY]) |
323 |
|
except KeyError: |
324 |
|
pass |
325 |
|
|
326 |
|
# these shouldn't be needed |
327 |
|
#for key in 'C_INCLUDE_PATH','CPLUS_INCLUDE_PATH','LIBRARY_PATH': |
328 |
|
# try: |
329 |
|
# env['ENV'][key] = os.environ[key] |
330 |
|
# except KeyError: |
331 |
|
# pass |
332 |
|
|
333 |
|
try: |
334 |
|
env['ENV']['PYTHONPATH'] = os.environ['PYTHONPATH'] |
335 |
|
except KeyError: |
336 |
|
pass |
337 |
|
|
338 |
|
######################## Add some custom builders ############################ |
339 |
|
|
340 |
|
py_builder = Builder(action = build_py, suffix = '.pyc', src_suffix = '.py', single_source=True) |
341 |
|
env.Append(BUILDERS = {'PyCompile' : py_builder}); |
342 |
|
|
343 |
|
runUnitTest_builder = Builder(action = runUnitTest, suffix = '.passed', src_suffix=env['PROGSUFFIX'], single_source=True) |
344 |
|
env.Append(BUILDERS = {'RunUnitTest' : runUnitTest_builder}); |
345 |
|
|
346 |
|
runPyUnitTest_builder = Builder(action = runPyUnitTest, suffix = '.passed', src_suffic='.py', single_source=True) |
347 |
|
env.Append(BUILDERS = {'RunPyUnitTest' : runPyUnitTest_builder}); |
348 |
|
|
349 |
|
epstopdfbuilder = Builder(action = eps2pdf, suffix='.pdf', src_suffix='.eps', single_source=True) |
350 |
|
env.Append(BUILDERS = {'EpsToPDF' : epstopdfbuilder}); |
351 |
|
|
352 |
|
############################ Dependency checks ############################### |
353 |
|
|
354 |
|
# Create a Configure() environment to check for compilers and python |
355 |
|
conf = Configure(env.Clone()) |
356 |
|
|
357 |
|
######## Test that the compilers work |
358 |
|
|
359 |
|
if 'CheckCC' in dir(conf): # exists since scons 1.1.0 |
360 |
|
if not conf.CheckCC(): |
361 |
|
print("Cannot run C compiler '%s' (check config.log)" % (env['CC'])) |
362 |
|
Exit(1) |
363 |
|
if not conf.CheckCXX(): |
364 |
|
print("Cannot run C++ compiler '%s' (check config.log)" % (env['CXX'])) |
365 |
|
Exit(1) |
366 |
|
else: |
367 |
|
if not conf.CheckFunc('printf', language='c'): |
368 |
|
print("Cannot run C compiler '%s' (check config.log)" % (env['CC'])) |
369 |
|
Exit(1) |
370 |
|
if not conf.CheckFunc('printf', language='c++'): |
371 |
|
print("Cannot run C++ compiler '%s' (check config.log)" % (env['CXX'])) |
372 |
|
Exit(1) |
373 |
|
|
374 |
|
if conf.CheckFunc('gethostname'): |
375 |
|
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
376 |
|
|
377 |
|
######## Python headers & library (required) |
378 |
|
|
379 |
|
python_inc_path=sysconfig.get_python_inc() |
380 |
|
if IS_WINDOWS: |
381 |
|
python_lib_path=os.path.join(sysconfig.get_config_var('prefix'), 'libs') |
382 |
|
else: |
383 |
|
python_lib_path=sysconfig.get_config_var('LIBDIR') |
384 |
|
#python_libs=[sysconfig.get_config_var('LDLIBRARY')] # only on linux |
385 |
|
if IS_WINDOWS: |
386 |
|
python_libs=['python%s%s'%(sys.version_info[0], sys.version_info[1])] |
387 |
|
else: |
388 |
|
python_libs=['python'+sysconfig.get_python_version()] |
389 |
|
|
390 |
|
if sysheaderopt == '': |
391 |
|
conf.env.AppendUnique(CPPPATH = [python_inc_path]) |
392 |
|
else: |
393 |
|
conf.env.Append(CCFLAGS = [sysheaderopt, python_inc_path]) |
394 |
|
|
395 |
|
conf.env.AppendUnique(LIBPATH = [python_lib_path]) |
396 |
|
conf.env.AppendUnique(LIBS = python_libs) |
397 |
|
# The wrapper script needs to find the libs |
398 |
|
conf.env.PrependENVPath(LD_LIBRARY_PATH_KEY, python_lib_path) |
399 |
|
|
400 |
|
if not conf.CheckCHeader('Python.h'): |
401 |
|
print("Cannot find python include files (tried 'Python.h' in directory %s)" % (python_inc_path)) |
402 |
|
Exit(1) |
403 |
|
if not conf.CheckFunc('Py_Exit'): |
404 |
|
print("Cannot find python library method Py_Main (tried %s in directory %s)" % (python_libs, python_lib_path)) |
405 |
|
Exit(1) |
406 |
|
|
407 |
|
# Commit changes to environment |
408 |
|
env = conf.Finish() |
409 |
|
|
410 |
|
######## boost (required) |
411 |
|
|
412 |
|
boost_inc_path,boost_lib_path=findLibWithHeader(env, env['boost_libs'], 'boost/python.hpp', env['boost_prefix'], lang='c++') |
413 |
|
if sysheaderopt == '': |
414 |
|
env.AppendUnique(CPPPATH = [boost_inc_path]) |
415 |
|
else: |
416 |
|
# This is required because we can't -isystem /usr/include since it breaks |
417 |
|
# std includes |
418 |
|
if os.path.normpath(boost_inc_path) == '/usr/include': |
419 |
|
conf.env.Append(CCFLAGS=[sysheaderopt, os.path.join(boost_inc_path,'boost')]) |
420 |
|
else: |
421 |
|
env.Append(CCFLAGS=[sysheaderopt, boost_inc_path]) |
422 |
|
|
423 |
|
env.AppendUnique(LIBPATH = [boost_lib_path]) |
424 |
|
env.AppendUnique(LIBS = env['boost_libs']) |
425 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, boost_lib_path) |
426 |
|
|
427 |
|
######## numpy (required) |
428 |
|
|
429 |
|
try: |
430 |
|
from numpy import identity |
431 |
|
except ImportError: |
432 |
|
print("Cannot import numpy, you need to set your PYTHONPATH and probably %s"%LD_LIBRARY_PATH_KEY) |
433 |
|
Exit(1) |
434 |
|
|
435 |
|
######## VTK (optional) |
436 |
|
|
437 |
|
if env['pyvisi']: |
438 |
|
try: |
439 |
|
import vtk |
440 |
|
env['pyvisi'] = True |
441 |
|
except ImportError: |
442 |
|
print("Cannot import vtk, disabling pyvisi.") |
443 |
|
env['pyvisi'] = False |
444 |
|
|
445 |
|
######## netCDF (optional) |
446 |
|
|
447 |
|
netcdf_inc_path='' |
448 |
|
netcdf_lib_path='' |
449 |
|
if env['netcdf']: |
450 |
|
netcdf_inc_path,netcdf_lib_path=findLibWithHeader(env, env['netcdf_libs'], 'netcdf.h', env['netcdf_prefix'], lang='c++') |
451 |
|
env.AppendUnique(CPPPATH = [netcdf_inc_path]) |
452 |
|
env.AppendUnique(LIBPATH = [netcdf_lib_path]) |
453 |
|
env.AppendUnique(LIBS = env['netcdf_libs']) |
454 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, netcdf_lib_path) |
455 |
|
env.Append(CPPDEFINES = ['USE_NETCDF']) |
456 |
|
|
457 |
|
######## PAPI (optional) |
458 |
|
|
459 |
|
papi_inc_path='' |
460 |
|
papi_lib_path='' |
461 |
|
if env['papi']: |
462 |
|
papi_inc_path,papi_lib_path=findLibWithHeader(env, env['papi_libs'], 'papi.h', env['papi_prefix'], lang='c') |
463 |
|
env.AppendUnique(CPPPATH = [papi_inc_path]) |
464 |
|
env.AppendUnique(LIBPATH = [papi_lib_path]) |
465 |
|
env.AppendUnique(LIBS = env['papi_libs']) |
466 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, papi_lib_path) |
467 |
|
env.Append(CPPDEFINES = ['BLOCKPAPI']) |
468 |
|
|
469 |
|
######## MKL (optional) |
470 |
|
|
471 |
|
mkl_inc_path='' |
472 |
|
mkl_lib_path='' |
473 |
|
if env['mkl']: |
474 |
|
mkl_inc_path,mkl_lib_path=findLibWithHeader(env, env['mkl_libs'], 'mkl_solver.h', env['mkl_prefix'], lang='c') |
475 |
|
env.AppendUnique(CPPPATH = [mkl_inc_path]) |
476 |
|
env.AppendUnique(LIBPATH = [mkl_lib_path]) |
477 |
|
env.AppendUnique(LIBS = env['mkl_libs']) |
478 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, mkl_lib_path) |
479 |
|
env.Append(CPPDEFINES = ['MKL']) |
480 |
|
|
481 |
|
######## UMFPACK (optional) |
482 |
|
|
483 |
|
umfpack_inc_path='' |
484 |
|
umfpack_lib_path='' |
485 |
|
if env['umfpack']: |
486 |
|
umfpack_inc_path,umfpack_lib_path=findLibWithHeader(env, env['umfpack_libs'], 'umfpack.h', env['umfpack_prefix'], lang='c') |
487 |
|
env.AppendUnique(CPPPATH = [umfpack_inc_path]) |
488 |
|
env.AppendUnique(LIBPATH = [umfpack_lib_path]) |
489 |
|
env.AppendUnique(LIBS = env['umfpack_libs']) |
490 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, umfpack_lib_path) |
491 |
|
env.Append(CPPDEFINES = ['UMFPACK']) |
492 |
|
|
493 |
|
######## LAPACK (optional) |
494 |
|
|
495 |
|
if env['lapack']=='mkl' and not env['mkl']: |
496 |
|
print("mkl_lapack requires MKL!") |
497 |
|
Exit(1) |
498 |
|
|
499 |
|
env['uselapack'] = env['lapack']!='none' |
500 |
|
lapack_inc_path='' |
501 |
|
lapack_lib_path='' |
502 |
|
if env['uselapack']: |
503 |
|
header='clapack.h' |
504 |
|
if env['lapack']=='mkl': |
505 |
|
env.AppendUnique(CPPDEFINES = ['MKL_LAPACK']) |
506 |
|
header='mkl_lapack.h' |
507 |
|
lapack_inc_path,lapack_lib_path=findLibWithHeader(env, env['lapack_libs'], header, env['lapack_prefix'], lang='c') |
508 |
|
env.AppendUnique(CPPPATH = [lapack_inc_path]) |
509 |
|
env.AppendUnique(LIBPATH = [lapack_lib_path]) |
510 |
|
env.AppendUnique(LIBS = env['lapack_libs']) |
511 |
|
env.Append(CPPDEFINES = ['USE_LAPACK']) |
512 |
|
|
513 |
|
######## Silo (optional) |
514 |
|
|
515 |
|
silo_inc_path='' |
516 |
|
silo_lib_path='' |
517 |
|
if env['silo']: |
518 |
|
silo_inc_path,silo_lib_path=findLibWithHeader(env, env['silo_libs'], 'silo.h', env['silo_prefix'], lang='c') |
519 |
|
env.AppendUnique(CPPPATH = [silo_inc_path]) |
520 |
|
env.AppendUnique(LIBPATH = [silo_lib_path]) |
521 |
|
# Note that we do not add the libs since they are only needed for the |
522 |
|
# weipa library and tools. |
523 |
|
#env.AppendUnique(LIBS = [env['silo_libs']]) |
524 |
|
|
525 |
|
######## VisIt (optional) |
526 |
|
|
527 |
|
visit_inc_path='' |
528 |
|
visit_lib_path='' |
529 |
|
if env['visit']: |
530 |
|
visit_inc_path,visit_lib_path=findLibWithHeader(env, env['visit_libs'], 'VisItControlInterface_V2.h', env['visit_prefix'], lang='c') |
531 |
|
env.AppendUnique(CPPPATH = [visit_inc_path]) |
532 |
|
env.AppendUnique(LIBPATH = [visit_lib_path]) |
533 |
|
|
534 |
|
######## MPI (optional) |
535 |
|
|
536 |
|
env['usempi'] = env['mpi']!='none' |
537 |
|
mpi_inc_path='' |
538 |
|
mpi_lib_path='' |
539 |
|
if env['usempi']: |
540 |
|
mpi_inc_path,mpi_lib_path=findLibWithHeader(env, env['mpi_libs'], 'mpi.h', env['mpi_prefix'], lang='c') |
541 |
|
env.AppendUnique(CPPPATH = [mpi_inc_path]) |
542 |
|
env.AppendUnique(LIBPATH = [mpi_lib_path]) |
543 |
|
env.AppendUnique(LIBS = env['mpi_libs']) |
544 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, mpi_lib_path) |
545 |
|
env.Append(CPPDEFINES = ['ESYS_MPI', 'MPI_NO_CPPBIND', 'MPICH_IGNORE_CXX_SEEK']) |
546 |
|
# NetCDF 4.1 defines MPI_Comm et al. if MPI_INCLUDED is not defined! |
547 |
|
# On the other hand MPT and OpenMPI don't define the latter so we have to |
548 |
|
# do that here |
549 |
|
if env['netcdf'] and env['mpi'] in ['MPT','OPENMPI']: |
550 |
|
env.Append(CPPDEFINES = ['MPI_INCLUDED']) |
551 |
|
|
552 |
|
######## ParMETIS (optional) |
553 |
|
|
554 |
|
if not env['usempi']: env['parmetis'] = False |
555 |
|
|
556 |
|
parmetis_inc_path='' |
557 |
|
parmetis_lib_path='' |
558 |
|
if env['parmetis']: |
559 |
|
parmetis_inc_path,parmetis_lib_path=findLibWithHeader(env, env['parmetis_libs'], 'parmetis.h', env['parmetis_prefix'], lang='c') |
560 |
|
env.AppendUnique(CPPPATH = [parmetis_inc_path]) |
561 |
|
env.AppendUnique(LIBPATH = [parmetis_lib_path]) |
562 |
|
env.AppendUnique(LIBS = env['parmetis_libs']) |
563 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, parmetis_lib_path) |
564 |
|
env.Append(CPPDEFINES = ['USE_PARMETIS']) |
565 |
|
|
566 |
|
######################## Summarize our environment ########################### |
567 |
|
|
568 |
|
# keep some of our install paths first in the list for the unit tests |
569 |
|
env.PrependENVPath(LD_LIBRARY_PATH_KEY, env['libinstall']) |
570 |
|
env.PrependENVPath('PYTHONPATH', prefix) |
571 |
|
env['ENV']['ESCRIPT_ROOT'] = prefix |
572 |
|
|
573 |
|
if not env['verbose']: |
574 |
|
env['CCCOMSTR'] = "Compiling $TARGET" |
575 |
|
env['CXXCOMSTR'] = "Compiling $TARGET" |
576 |
|
env['SHCCCOMSTR'] = "Compiling $TARGET" |
577 |
|
env['SHCXXCOMSTR'] = "Compiling $TARGET" |
578 |
|
env['ARCOMSTR'] = "Linking $TARGET" |
579 |
|
env['LINKCOMSTR'] = "Linking $TARGET" |
580 |
|
env['SHLINKCOMSTR'] = "Linking $TARGET" |
581 |
|
env['PDFLATEXCOMSTR'] = "Building $TARGET from LaTeX input $SOURCES" |
582 |
|
env['BIBTEXCOMSTR'] = "Generating bibliography $TARGET" |
583 |
|
env['MAKEINDEXCOMSTR'] = "Generating index $TARGET" |
584 |
|
env['PDFLATEXCOMSTR'] = "Building $TARGET from LaTeX input $SOURCES" |
585 |
|
#Progress(['Checking -\r', 'Checking \\\r', 'Checking |\r', 'Checking /\r'], interval=17) |
586 |
|
|
587 |
|
print("") |
588 |
|
print("*** Config Summary (see config.log and lib/buildvars for details) ***") |
589 |
|
print("Escript/Finley revision %s"%global_revision) |
590 |
|
print(" Install prefix: %s"%env['prefix']) |
591 |
|
print(" Python: %s"%sysconfig.PREFIX) |
592 |
|
print(" boost: %s"%env['boost_prefix']) |
593 |
|
print(" numpy: YES") |
594 |
|
if env['usempi']: |
595 |
|
print(" MPI: YES (flavour: %s)"%env['mpi']) |
596 |
|
else: |
597 |
|
print(" MPI: DISABLED") |
598 |
|
if env['uselapack']: |
599 |
|
print(" LAPACK: YES (flavour: %s)"%env['lapack']) |
600 |
|
else: |
601 |
|
print(" LAPACK: DISABLED") |
602 |
|
d_list=[] |
603 |
|
e_list=[] |
604 |
|
for i in 'debug','openmp','netcdf','parmetis','papi','mkl','umfpack','silo','visit','pyvisi': |
605 |
|
if env[i]: e_list.append(i) |
606 |
|
else: d_list.append(i) |
607 |
|
for i in e_list: |
608 |
|
print("%16s: YES"%i) |
609 |
|
for i in d_list: |
610 |
|
print("%16s: DISABLED"%i) |
611 |
|
if ((fatalwarning != '') and (env['werror'])): |
612 |
|
print(" Treating warnings as errors") |
613 |
|
else: |
614 |
|
print(" NOT treating warnings as errors") |
615 |
|
print("") |
616 |
|
|
617 |
|
####################### Configure the subdirectories ######################### |
618 |
|
|
619 |
|
from grouptest import * |
620 |
|
|
621 |
|
TestGroups=[] |
622 |
|
|
623 |
|
# keep an environment without warnings-as-errors |
624 |
|
dodgy_env=env.Clone() |
625 |
|
|
626 |
|
# now add warnings-as-errors flags. This needs to be done after configuration |
627 |
|
# because the scons test files have warnings in them |
628 |
|
if ((fatalwarning != '') and (env['werror'])): |
629 |
|
env.Append(CCFLAGS = fatalwarning) |
630 |
|
|
631 |
|
Export( |
632 |
|
['env', |
633 |
|
'dodgy_env', |
634 |
|
'IS_WINDOWS', |
635 |
|
'TestGroups' |
636 |
|
] |
637 |
|
) |
638 |
|
|
639 |
|
env.SConscript(dirs = ['tools/CppUnitTest/src'], variant_dir='build/$PLATFORM/tools/CppUnitTest', duplicate=0) |
640 |
|
env.SConscript(dirs = ['tools/escriptconvert'], variant_dir='build/$PLATFORM/tools/escriptconvert', duplicate=0) |
641 |
|
env.SConscript(dirs = ['paso/src'], variant_dir='build/$PLATFORM/paso', duplicate=0) |
642 |
|
env.SConscript(dirs = ['weipa/src'], variant_dir='build/$PLATFORM/weipa', duplicate=0) |
643 |
|
env.SConscript(dirs = ['escript/src'], variant_dir='build/$PLATFORM/escript', duplicate=0) |
644 |
|
env.SConscript(dirs = ['esysUtils/src'], variant_dir='build/$PLATFORM/esysUtils', duplicate=0) |
645 |
|
env.SConscript(dirs = ['dudley/src'], variant_dir='build/$PLATFORM/dudley', duplicate=0) |
646 |
|
env.SConscript(dirs = ['finley/src'], variant_dir='build/$PLATFORM/finley', duplicate=0) |
647 |
|
env.SConscript(dirs = ['modellib/py_src'], variant_dir='build/$PLATFORM/modellib', duplicate=0) |
648 |
|
env.SConscript(dirs = ['doc'], variant_dir='build/$PLATFORM/doc', duplicate=0) |
649 |
|
env.SConscript(dirs = ['pyvisi/py_src'], variant_dir='build/$PLATFORM/pyvisi', duplicate=0) |
650 |
|
env.SConscript(dirs = ['pycad/py_src'], variant_dir='build/$PLATFORM/pycad', duplicate=0) |
651 |
|
env.SConscript(dirs = ['pythonMPI/src'], variant_dir='build/$PLATFORM/pythonMPI', duplicate=0) |
652 |
|
env.SConscript(dirs = ['paso/profiling'], variant_dir='build/$PLATFORM/paso/profiling', duplicate=0) |
653 |
|
|
654 |
|
######################## Populate the buildvars file ######################### |
655 |
|
|
656 |
|
# remove obsolete file |
657 |
|
if not env['usempi']: |
658 |
|
Execute(Delete(os.path.join(env['libinstall'], 'pythonMPI'))) |
659 |
|
Execute(Delete(os.path.join(env['libinstall'], 'pythonMPIredirect'))) |
660 |
|
|
661 |
|
# Try to extract the boost version from version.hpp |
662 |
|
boosthpp=open(os.path.join(boost_inc_path, 'boost', 'version.hpp')) |
663 |
|
boostversion='unknown' |
664 |
|
try: |
665 |
|
for line in boosthpp: |
666 |
|
ver=re.match(r'#define BOOST_VERSION (\d+)',line) |
667 |
|
if ver: |
668 |
|
boostversion=ver.group(1) |
669 |
|
except StopIteration: |
670 |
|
pass |
671 |
|
boosthpp.close() |
672 |
|
|
673 |
|
buildvars=open(os.path.join(env['libinstall'], 'buildvars'), 'w') |
674 |
|
buildvars.write("svn_revision="+str(global_revision)+"\n") |
675 |
|
buildvars.write("prefix="+prefix+"\n") |
676 |
|
buildvars.write("cc="+env['CC']+"\n") |
677 |
|
buildvars.write("cxx="+env['CXX']+"\n") |
678 |
|
buildvars.write("python="+sys.executable+"\n") |
679 |
|
buildvars.write("python_version="+str(sys.version_info[0])+"."+str(sys.version_info[1])+"."+str(sys.version_info[2])+"\n") |
680 |
|
buildvars.write("boost_inc_path="+boost_inc_path+"\n") |
681 |
|
buildvars.write("boost_lib_path="+boost_lib_path+"\n") |
682 |
|
buildvars.write("boost_version="+boostversion+"\n") |
683 |
|
buildvars.write("debug=%d\n"%int(env['debug'])) |
684 |
|
buildvars.write("openmp=%d\n"%int(env['openmp'])) |
685 |
|
buildvars.write("mpi=%s\n"%env['mpi']) |
686 |
|
buildvars.write("mpi_inc_path=%s\n"%mpi_inc_path) |
687 |
|
buildvars.write("mpi_lib_path=%s\n"%mpi_lib_path) |
688 |
|
buildvars.write("lapack=%s\n"%env['lapack']) |
689 |
|
buildvars.write("pyvisi=%d\n"%env['pyvisi']) |
690 |
|
for i in 'netcdf','parmetis','papi','mkl','umfpack','silo','visit': |
691 |
|
buildvars.write("%s=%d\n"%(i, int(env[i]))) |
692 |
|
if env[i]: |
693 |
|
buildvars.write("%s_inc_path=%s\n"%(i, eval(i+'_inc_path'))) |
694 |
|
buildvars.write("%s_lib_path=%s\n"%(i, eval(i+'_lib_path'))) |
695 |
|
buildvars.close() |
696 |
|
|
697 |
|
################### Targets to build and install libraries ################### |
698 |
|
|
699 |
|
target_init = env.Command(env['pyinstall']+'/__init__.py', None, Touch('$TARGET')) |
700 |
|
env.Alias('target_init', [target_init]) |
701 |
|
|
702 |
|
# The headers have to be installed prior to build in order to satisfy |
703 |
|
# #include <paso/Common.h> |
704 |
|
env.Alias('build_esysUtils', ['install_esysUtils_headers', 'build_esysUtils_lib']) |
705 |
|
env.Alias('install_esysUtils', ['build_esysUtils', 'install_esysUtils_lib']) |
706 |
|
|
707 |
|
env.Alias('build_paso', ['install_paso_headers', 'build_paso_lib']) |
708 |
|
env.Alias('install_paso', ['build_paso', 'install_paso_lib']) |
709 |
|
|
710 |
|
env.Alias('build_escript', ['install_escript_headers', 'build_escript_lib', 'build_escriptcpp_lib']) |
711 |
|
env.Alias('install_escript', ['build_escript', 'install_escript_lib', 'install_escriptcpp_lib', 'install_escript_py']) |
712 |
|
|
713 |
|
env.Alias('build_dudley', ['install_dudley_headers', 'build_dudley_lib', 'build_dudleycpp_lib']) |
714 |
|
env.Alias('install_dudley', ['build_dudley', 'install_dudley_lib', 'install_dudleycpp_lib', 'install_dudley_py']) |
715 |
|
|
716 |
|
env.Alias('build_finley', ['install_finley_headers', 'build_finley_lib', 'build_finleycpp_lib']) |
717 |
|
env.Alias('install_finley', ['build_finley', 'install_finley_lib', 'install_finleycpp_lib', 'install_finley_py']) |
718 |
|
|
719 |
|
env.Alias('build_weipa', ['install_weipa_headers', 'build_weipa_lib', 'build_weipacpp_lib']) |
720 |
|
env.Alias('install_weipa', ['build_weipa', 'install_weipa_lib', 'install_weipacpp_lib', 'install_weipa_py']) |
721 |
|
|
722 |
|
env.Alias('build_escriptreader', ['install_weipa_headers', 'build_escriptreader_lib']) |
723 |
|
env.Alias('install_escriptreader', ['build_escriptreader', 'install_escriptreader_lib']) |
724 |
|
|
725 |
|
# Now gather all the above into some easy targets: build_all and install_all |
726 |
|
build_all_list = [] |
727 |
|
build_all_list += ['build_esysUtils'] |
728 |
|
build_all_list += ['build_paso'] |
729 |
|
build_all_list += ['build_escript'] |
730 |
|
build_all_list += ['build_dudley'] |
731 |
|
build_all_list += ['build_finley'] |
732 |
|
build_all_list += ['build_weipa'] |
733 |
|
if not IS_WINDOWS: build_all_list += ['build_escriptreader'] |
734 |
|
if env['usempi']: build_all_list += ['build_pythonMPI'] |
735 |
|
build_all_list += ['build_escriptconvert'] |
736 |
|
env.Alias('build_all', build_all_list) |
737 |
|
|
738 |
|
install_all_list = [] |
739 |
|
install_all_list += ['target_init'] |
740 |
|
install_all_list += ['install_esysUtils'] |
741 |
|
install_all_list += ['install_paso'] |
742 |
|
install_all_list += ['install_escript'] |
743 |
|
install_all_list += ['install_dudley'] |
744 |
|
install_all_list += ['install_finley'] |
745 |
|
install_all_list += ['install_weipa'] |
746 |
|
if not IS_WINDOWS: install_all_list += ['install_escriptreader'] |
747 |
|
install_all_list += ['install_pyvisi_py'] |
748 |
|
install_all_list += ['install_modellib_py'] |
749 |
|
install_all_list += ['install_pycad_py'] |
750 |
|
if env['usempi']: install_all_list += ['install_pythonMPI'] |
751 |
|
install_all_list += ['install_escriptconvert'] |
752 |
|
env.Alias('install_all', install_all_list) |
753 |
|
|
754 |
|
# Default target is install |
755 |
|
env.Default('install_all') |
756 |
|
|
757 |
|
################## Targets to build and run the test suite ################### |
758 |
|
|
759 |
|
env.Alias('build_cppunittest', ['install_cppunittest_headers', 'build_cppunittest_lib']) |
760 |
|
env.Alias('install_cppunittest', ['build_cppunittest', 'install_cppunittest_lib']) |
761 |
|
env.Alias('run_tests', ['install_all', 'install_cppunittest_lib']) |
762 |
|
env.Alias('all_tests', ['install_all', 'install_cppunittest_lib', 'run_tests', 'py_tests']) |
763 |
|
env.Alias('build_full',['install_all','build_tests','build_py_tests']) |
764 |
|
env.Alias('build_PasoTests','build/$PLATFORM/paso/profiling/PasoTests') |
765 |
|
|
766 |
|
##################### Targets to build the documentation ##################### |
767 |
|
|
768 |
|
env.Alias('api_epydoc','install_all') |
769 |
|
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'user_pdf', 'install_pdf', 'cookbook_pdf']) |
770 |
|
env.Alias('release_prep', ['docs', 'install_all']) |
771 |
|
|
772 |
|
if not IS_WINDOWS: |
773 |
|
try: |
774 |
|
utest=open('utest.sh','w') |
775 |
|
utest.write(GroupTest.makeHeader(env['PLATFORM'])) |
776 |
|
for tests in TestGroups: |
777 |
|
utest.write(tests.makeString()) |
778 |
|
utest.close() |
779 |
|
Execute(Chmod('utest.sh', 0755)) |
780 |
|
print("Generated utest.sh.") |
781 |
|
except IOError: |
782 |
|
print("Error attempting to write unittests file.") |
783 |
|
Exit(1) |
784 |
|
|
785 |
|
# Make sure that the escript wrapper is in place |
786 |
|
if not os.path.isfile(os.path.join(env['bininstall'], 'run-escript')): |
787 |
|
print("Copying escript wrapper.") |
788 |
|
Execute(Copy(os.path.join(env['bininstall'],'run-escript'), 'bin/run-escript')) |
789 |
|
|
|
SConscript(['tools/CppUnitTest/SConstruct','tools/mmio/SConstruct','esysUtils/SConstruct','escript/SConstruct','paso/SConstruct','finley/SConstruct','bruce/SConstruct'], duplicate=0) |
|