15 |
EnsureSConsVersion(0,96,91) |
EnsureSConsVersion(0,96,91) |
16 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
17 |
|
|
18 |
|
# import tools: |
19 |
|
import glob |
20 |
import sys, os |
import sys, os |
21 |
# Add our extensions |
# Add our extensions |
22 |
if sys.path.count('scons')==0: sys.path.append('scons') |
if sys.path.count('scons')==0: sys.path.append('scons') |
45 |
('incinstall', 'where the esys headers will be installed', Dir('#.').abspath+'/include'), |
('incinstall', 'where the esys headers will be installed', Dir('#.').abspath+'/include'), |
46 |
('libinstall', 'where the esys libraries will be installed', Dir('#.').abspath+'/lib'), |
('libinstall', 'where the esys libraries will be installed', Dir('#.').abspath+'/lib'), |
47 |
('pyinstall', 'where the esys python modules will be installed', Dir('#.').abspath), |
('pyinstall', 'where the esys python modules will be installed', Dir('#.').abspath), |
48 |
|
('src_zipfile', 'the source zip file will be installed.', Dir('#.').abspath+"/release/escript_src.zip"), |
49 |
|
('test_zipfile', 'the test zip file will be installed.', Dir('#.').abspath+"/release/escript_tests.zip"), |
50 |
|
('src_tarfile', 'the source tar file will be installed.', Dir('#.').abspath+"/release/escript_src.tar.gz"), |
51 |
|
('test_tarfile', 'the test tar file will be installed.', Dir('#.').abspath+"/release/escript_tests.tar.gz"), |
52 |
|
('examples_tarfile', 'the examples tar file will be installed.', Dir('#.').abspath+"/release/doc/escript_examples.tar.gz"), |
53 |
|
('examples_zipfile', 'the examples zip file will be installed.', Dir('#.').abspath+"/release/doc/escript_examples.zip"), |
54 |
|
('guide_pdf', 'name of the user guide in pdf format', Dir('#.').abspath+"/release/doc/user/guide.pdf"), |
55 |
|
('guide_html', 'name of the directory for user guide in html format', Dir('#.').abspath+"/release/doc/user/html"), |
56 |
# Compilation options |
# Compilation options |
57 |
BoolOption('dodebug', 'Do you want a debug build?', 'yes'), |
BoolOption('dodebug', 'Do you want a debug build?', 'no'), |
58 |
('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), |
59 |
('cc_defines','C/C++ defines to use', None), |
('cc_defines','C/C++ defines to use', None), |
60 |
('cc_flags','C compiler flags to use (Release build)', None), |
('cc_flags','C compiler flags to use (Release build)', '-O3 -std=c99 -ffast-math -fpic -Wno-unknown-pragmas'), |
61 |
('cc_flags_debug', 'C compiler flags to use (Debug build)', None), |
('cc_flags_debug', 'C compiler flags to use (Debug build)', '-g -O0 -ffast-math -std=c99 -fpic -Wno-unknown-pragmas'), |
62 |
('cxx_flags', 'C++ compiler flags to use (Release build)', None), |
('cxx_flags', 'C++ compiler flags to use (Release build)', '--no-warn -ansi'), |
63 |
('cxx_flags_debug', 'C++ compiler flags to use (Debug build)', None), |
('cxx_flags_debug', 'C++ compiler flags to use (Debug build)', '--no-warn -ansi -DDOASSERT -DDOPROF'), |
64 |
('ar_flags', 'Static library archiver flags to use', None), |
('ar_flags', 'Static library archiver flags to use', None), |
65 |
('sys_libs', 'System libraries to link with', None), |
('sys_libs', 'System libraries to link with', None), |
66 |
|
('tar_flags','flags for zip files','-c -z'), |
67 |
# MKL |
# MKL |
68 |
PathOption('mkl_path', 'Path to MKL includes', None), |
PathOption('mkl_path', 'Path to MKL includes', None), |
69 |
PathOption('mkl_lib_path', 'Path to MKL libs', None), |
PathOption('mkl_lib_path', 'Path to MKL libs', None), |
85 |
PathOption('boost_path', 'Path to Boost includes', '/usr/include'), |
PathOption('boost_path', 'Path to Boost includes', '/usr/include'), |
86 |
PathOption('boost_lib_path', 'Path to Boost libs', '/usr/lib'), |
PathOption('boost_lib_path', 'Path to Boost libs', '/usr/lib'), |
87 |
('boost_lib', 'Boost libraries to link with', ['boost_python',]), |
('boost_lib', 'Boost libraries to link with', ['boost_python',]), |
|
# CppUnit |
|
|
PathOption('cppunit_path', 'Path to CppUnit includes', Dir('#.').abspath+'/tools/CppUnitTest/inc'), |
|
|
PathOption('cppunit_lib_path', 'Path to CppUnit libs', Dir('#.').abspath+'/lib'), |
|
|
('cppunit_lib', 'CppUnit libraries to link with', ['CppUnitTest',]), |
|
88 |
# Doc building |
# Doc building |
89 |
PathOption('doxygen_path', 'Path to Doxygen executable', None), |
PathOption('doxygen_path', 'Path to Doxygen executable', None), |
90 |
PathOption('epydoc_path', 'Path to Epydoc executable', None), |
PathOption('epydoc_path', 'Path to Epydoc executable', None), |
214 |
sys_libs = '' |
sys_libs = '' |
215 |
|
|
216 |
try: |
try: |
217 |
|
tar_flags = env['tar_flags'] |
218 |
|
env.Replace(TARFLAGS = tar_flags) |
219 |
|
except KeyError: |
220 |
|
pass |
221 |
|
|
222 |
|
try: |
223 |
includes = env['mkl_path'] |
includes = env['mkl_path'] |
224 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
225 |
except KeyError: |
except KeyError: |
226 |
pass |
pass |
227 |
|
|
228 |
try: |
try: |
229 |
lib_path = env['mkl_lib_path'] |
lib_path = env['mkl_lib_path'] |
230 |
env.Append(LIBPATH = [lib_path,]) |
env.Append(LIBPATH = [lib_path,]) |
231 |
except KeyError: |
except KeyError: |
232 |
pass |
pass |
233 |
|
|
234 |
try: |
try: |
235 |
mkl_libs = env['mkl_libs'] |
mkl_libs = env['mkl_libs'] |
236 |
except KeyError: |
except KeyError: |
278 |
except KeyError: |
except KeyError: |
279 |
boost_lib = None |
boost_lib = None |
280 |
try: |
try: |
|
includes = env['cppunit_path'] |
|
|
env.Append(CPPPATH = [includes,]) |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
lib_path = env['cppunit_lib_path'] |
|
|
env.Append(LIBPATH = [lib_path,]) |
|
|
except KeyError: |
|
|
pass |
|
|
try: |
|
|
cppunit_lib = env['cppunit_lib'] |
|
|
except KeyError: |
|
|
boost_lib = None |
|
|
try: |
|
281 |
includes = env['python_path'] |
includes = env['python_path'] |
282 |
env.Append(CPPPATH = [includes,]) |
env.Append(CPPPATH = [includes,]) |
283 |
except KeyError: |
except KeyError: |
318 |
except KeyError: |
except KeyError: |
319 |
papi_libs = None |
papi_libs = None |
320 |
|
|
321 |
# Targets |
|
322 |
|
try: |
323 |
|
src_zipfile = env.File(env['src_zipfile']) |
324 |
|
except KeyError: |
325 |
|
src_zipfile = None |
326 |
|
try: |
327 |
|
test_zipfile = env.File(env['test_zipfile']) |
328 |
|
except KeyError: |
329 |
|
test_zipfile = None |
330 |
|
try: |
331 |
|
examples_zipfile = env.File(env['examples_zipfile']) |
332 |
|
except KeyError: |
333 |
|
examples_zipfile = None |
334 |
|
|
335 |
|
try: |
336 |
|
src_tarfile = env.File(env['src_tarfile']) |
337 |
|
except KeyError: |
338 |
|
src_tarfile = None |
339 |
|
try: |
340 |
|
test_tarfile = env.File(env['test_tarfile']) |
341 |
|
except KeyError: |
342 |
|
test_tarfile = None |
343 |
|
try: |
344 |
|
examples_tarfile = env.File(env['examples_tarfile']) |
345 |
|
except KeyError: |
346 |
|
examples_tarfile = None |
347 |
|
|
348 |
|
try: |
349 |
|
guide_pdf = env.File(env['guide_pdf']) |
350 |
|
except KeyError: |
351 |
|
guide_pdf = None |
352 |
|
|
353 |
|
try: |
354 |
|
guide_html_index = env.File('index.htm',env['guide_html']) |
355 |
|
except KeyError: |
356 |
|
guide_html_index = None |
357 |
|
|
358 |
|
# Zipgets |
359 |
env.Default(libinstall) |
env.Default(libinstall) |
360 |
env.Default(incinstall) |
env.Default(incinstall) |
361 |
env.Default(pyinstall) |
env.Default(pyinstall) |
362 |
env.Alias('build_tests') |
env.Alias('release_src',[ src_zipfile, src_tarfile ]) |
363 |
env.Alias('run_tests') |
env.Alias('release_tests',[ test_zipfile, test_tarfile]) |
364 |
env.Alias('py_tests') |
env.Alias('release_examples',[ examples_zipfile, examples_tarfile]) |
365 |
env.Alias('basic_py_tests') |
env.Alias('docs',[ 'release_examples', guide_pdf, guide_html_index ]) |
366 |
env.Alias('all_tests', ['run_tests', 'py_tests']) |
env.Alias('release', ['release_src', 'release_tests', 'docs']) |
367 |
|
env.Alias('build_tests') # target to build all C++ tests |
368 |
|
env.Alias('build_py_tests') # target to build all python tests |
369 |
|
env.Alias('build_all_tests', [ 'build_tests', 'build_py_tests' ] ) # target to build all python tests |
370 |
|
env.Alias('run_tests', 'build_tests') # target to run all C++ test |
371 |
|
env.Alias('py_tests', 'build_py_tests') # taget to run all released python tests |
372 |
|
env.Alias('all_tests', ['run_tests', 'py_tests']) # target to run all C++ and released python tests |
373 |
|
|
374 |
# Python install - esys __init__.py |
# Python install - esys __init__.py |
375 |
# This is just an empty file but stills need to be touched so add a special target and Command. Note you can't use the scons Touch() function as it will not |
# This is just an empty file but stills need to be touched so add a special target and Command. Note you can't use the scons Touch() function as it will not |
378 |
|
|
379 |
# Allow sconscripts to see the env |
# Allow sconscripts to see the env |
380 |
Export(["env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umf_libs", |
Export(["env", "incinstall", "libinstall", "pyinstall", "dodebug", "mkl_libs", "scsl_libs", "umf_libs", |
381 |
"boost_lib", "python_lib", "doxygen_path", "epydoc_path", "epydoc_pythonpath", "papi_libs", "cppunit_lib", "sys_libs" ]) |
"boost_lib", "python_lib", "doxygen_path", "epydoc_path", "epydoc_pythonpath", "papi_libs", |
382 |
|
"sys_libs", "test_zipfile", "src_zipfile", "test_tarfile", "src_tarfile", "examples_tarfile", "examples_zipfile", |
383 |
|
"guide_pdf", "guide_html_index"]) |
384 |
|
|
385 |
# End initialisation section |
# End initialisation section |
386 |
# Begin configuration section |
# Begin configuration section |
387 |
|
# adds this file and the scons option directore to the source tar |
388 |
|
release_srcfiles=[env.File('SConstruct'),]+[ env.File(x) for x in glob.glob('scons/*.py') ] |
389 |
|
release_testfiles=[env.File('README_TESTS'),] |
390 |
|
env.Zip(src_zipfile, release_srcfiles) |
391 |
|
env.Zip(test_zipfile, release_testfiles) |
392 |
|
env.Tar(src_tarfile, release_srcfiles) |
393 |
|
env.Tar(test_tarfile, release_testfiles) |
394 |
|
|
395 |
# Insert new components to be build here |
# Insert new components to be build here |
396 |
# 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 |
397 |
# 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 |
404 |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
env.SConscript(dirs = ['esysUtils/src'], build_dir='build/$PLATFORM/esysUtils', duplicate=0) |
405 |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
env.SConscript(dirs = ['finley/src'], build_dir='build/$PLATFORM/finley', duplicate=0) |
406 |
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) |
407 |
|
env.SConscript(dirs = ['doc'], build_dir='build/$PLATFORM/doc', duplicate=0) |
408 |
# FIXME:need to be incorporated into build system |
#env.SConscript(dirs = ['pyvisi/py_src'], build_dir='build/$PLATFORM/pyvisi', duplicate=0) not part of beta.0 |
|
# FIXME: 'pyvisi/SConstruct'] |
|
|
# FIXME: 'doc/SConstruct'] |
|
|
# FIXME: 'doc/SConstruct'] |
|