15 |
EnsureSConsVersion(0,96,91) |
EnsureSConsVersion(0,96,91) |
16 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
17 |
|
|
18 |
import sys, os, re, socket |
import sys, os, re, socket, platform |
19 |
|
|
20 |
# Add our extensions |
# Add our extensions |
21 |
if os.path.isdir('scons'): sys.path.append('scons') |
if os.path.isdir('scons'): sys.path.append('scons') |
72 |
('ld_extra', 'Extra linker flags', ''), |
('ld_extra', 'Extra linker flags', ''), |
73 |
('sys_libs', 'System libraries to link with', []), |
('sys_libs', 'System libraries to link with', []), |
74 |
('ar_flags', 'Static library archiver flags to use', ''), |
('ar_flags', 'Static library archiver flags to use', ''), |
75 |
BoolOption('useopenmp', 'Compile parallel version using OpenMP', 'yes'), |
BoolOption('useopenmp', 'Compile parallel version using OpenMP', 'no'), |
76 |
BoolOption('usepedantic', 'Compile with -pedantic if using gcc', 'no'), |
BoolOption('usepedantic', 'Compile with -pedantic if using gcc', 'no'), |
77 |
BoolOption('usewarnings','Compile with warnings as errors if using gcc','yes'), |
BoolOption('usewarnings','Compile with warnings as errors if using gcc','yes'), |
78 |
|
('forcelazy','for testing use only - set the default value for autolazy','leave_alone'), |
79 |
# Python |
# Python |
80 |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
('python_path', 'Path to Python includes', '/usr/include/'+python_version), |
81 |
('python_lib_path', 'Path to Python libs', usr_lib), |
('python_lib_path', 'Path to Python libs', usr_lib), |
221 |
if env["omp_debug"] == "-DEFAULT_5": env['omp_debug'] = omp_debug |
if env["omp_debug"] == "-DEFAULT_5": env['omp_debug'] = omp_debug |
222 |
if env["omp_libs"] == "-DEFAULT_6": env['omp_libs'] = omp_libs |
if env["omp_libs"] == "-DEFAULT_6": env['omp_libs'] = omp_libs |
223 |
|
|
224 |
|
#set up the autolazy values |
225 |
|
if env['forcelazy'] != "leave_alone": |
226 |
|
if env['forcelazy'] == 'on': |
227 |
|
env.Append(CPPDEFINES='FAUTOLAZYON') |
228 |
|
else: |
229 |
|
if env['forcelazy'] == 'off': |
230 |
|
env.Append(CPPDEFINES='FAUTOLAZYOFF') |
231 |
|
|
232 |
# OpenMP is disabled if useopenmp=no or both variables omp_optim and omp_debug are empty |
# OpenMP is disabled if useopenmp=no or both variables omp_optim and omp_debug are empty |
233 |
if not env["useopenmp"]: |
if not env["useopenmp"]: |
234 |
env['omp_optim'] = "" |
env['omp_optim'] = "" |
333 |
|
|
334 |
# Test that the compiler is working |
# Test that the compiler is working |
335 |
if not conf.CheckFunc('printf'): |
if not conf.CheckFunc('printf'): |
336 |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
337 |
sys.exit(1) |
sys.exit(1) |
338 |
|
|
339 |
if conf.CheckFunc('gethostname'): |
if conf.CheckFunc('gethostname'): |
340 |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
355 |
if not conf.CheckCHeader('Python.h'): |
if not conf.CheckCHeader('Python.h'): |
356 |
print "Cannot find python include files (tried 'Python.h' in directory %s)" % (env['python_path']) |
print "Cannot find python include files (tried 'Python.h' in directory %s)" % (env['python_path']) |
357 |
sys.exit(1) |
sys.exit(1) |
358 |
if not conf.CheckFunc('Py_Main'): |
if not conf.CheckFunc('Py_Exit'): |
359 |
print "Cannot find python library method Py_Main (tried lib %s in directory %s)" % (env['python_libs'], env['python_lib_path']) |
print "Cannot find python library method Py_Main (tried lib %s in directory %s)" % (env['python_libs'], env['python_lib_path']) |
360 |
sys.exit(1) |
sys.exit(1) |
361 |
|
|
362 |
############ boost (required) ################################## |
############ boost (required) ################################## |
363 |
|
|
364 |
if not sysheaderopt =="": |
if not sysheaderopt =="": |
365 |
conf.env.Append(CCFLAGS=sysheaderopt+env['boost_path']+'boost') |
conf.env.Append(CCFLAGS=sysheaderopt+os.path.join(env['boost_path'],'boost')) |
366 |
else: |
else: |
367 |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
368 |
|
|
374 |
if not conf.CheckCXXHeader('boost/python.hpp'): |
if not conf.CheckCXXHeader('boost/python.hpp'): |
375 |
print "Cannot find boost include files (tried boost/python.hpp in directory %s)" % (env['boost_path']) |
print "Cannot find boost include files (tried boost/python.hpp in directory %s)" % (env['boost_path']) |
376 |
sys.exit(1) |
sys.exit(1) |
377 |
|
|
378 |
if not conf.CheckFunc('PyObject_SetAttr'): |
if not conf.CheckFunc('PyObject_SetAttr'): |
379 |
print "Cannot find boost library method PyObject_SetAttr (tried method PyObject_SetAttr in library %s in directory %s)" % (env['boost_libs'], env['boost_lib_path']) |
print "Cannot find boost library method PyObject_SetAttr (tried method PyObject_SetAttr in library %s in directory %s)" % (env['boost_libs'], env['boost_lib_path']) |
380 |
sys.exit(1) |
sys.exit(1) |
477 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['amd_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['amd_lib_path']) # The wrapper script needs to find these libs |
478 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['blas_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['blas_lib_path']) # The wrapper script needs to find these libs |
479 |
|
|
|
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
|
480 |
if env['useumfpack'] and not conf.CheckFunc('umfpack_di_symbolic'): env['useumfpack'] = 0 |
if env['useumfpack'] and not conf.CheckFunc('umfpack_di_symbolic'): env['useumfpack'] = 0 |
481 |
if env['useumfpack'] and not conf.CheckFunc('daxpy'): env['useumfpack'] = 0 # this does not work on shake73? |
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
482 |
|
# if env['useumfpack'] and not conf.CheckFunc('daxpy'): env['useumfpack'] = 0 # this does not work on shake73? |
483 |
|
|
484 |
# Add UMFPACK to environment env if it was found |
# Add UMFPACK to environment env if it was found |
485 |
if env['useumfpack']: |
if env['useumfpack']: |
634 |
|
|
635 |
############ Build the subdirectories ########################## |
############ Build the subdirectories ########################## |
636 |
|
|
637 |
|
from grouptest import * |
638 |
|
|
639 |
|
TestGroups=[] |
640 |
|
|
641 |
Export( |
Export( |
642 |
["env", |
["env", |
643 |
"env_mpi", |
"env_mpi", |
644 |
"clone_env", |
"clone_env", |
645 |
"IS_WINDOWS_PLATFORM" |
"IS_WINDOWS_PLATFORM", |
646 |
|
"TestGroups" |
647 |
] |
] |
648 |
) |
) |
649 |
|
|
661 |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
env.SConscript(dirs = ['scripts'], build_dir='build/$PLATFORM/scripts', duplicate=0) |
662 |
env.SConscript(dirs = ['paso/profiling'], build_dir='build/$PLATFORM/paso/profiling', duplicate=0) |
env.SConscript(dirs = ['paso/profiling'], build_dir='build/$PLATFORM/paso/profiling', duplicate=0) |
663 |
|
|
664 |
|
|
665 |
############ Remember what optimizations we used ############### |
############ Remember what optimizations we used ############### |
666 |
|
|
667 |
remember_list = [] |
remember_list = [] |
702 |
build_all_list += ['build_escript'] |
build_all_list += ['build_escript'] |
703 |
build_all_list += ['build_finley'] |
build_all_list += ['build_finley'] |
704 |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
705 |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_escript_wrapper'] |
706 |
if env['usesilo']: build_all_list += ['target_escript2silo'] |
if env['usesilo']: build_all_list += ['target_escript2silo'] |
707 |
env.Alias('build_all', build_all_list) |
env.Alias('build_all', build_all_list) |
708 |
|
|
716 |
install_all_list += ['target_install_modellib_py'] |
install_all_list += ['target_install_modellib_py'] |
717 |
install_all_list += ['target_install_pycad_py'] |
install_all_list += ['target_install_pycad_py'] |
718 |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
719 |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_escript_wrapper'] |
720 |
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
721 |
install_all_list += ['remember_options'] |
install_all_list += ['remember_options'] |
722 |
env.Alias('install_all', install_all_list) |
env.Alias('install_all', install_all_list) |
730 |
env.Alias('install_cppunittest', ['build_cppunittest', 'target_install_cppunittest_a']) |
env.Alias('install_cppunittest', ['build_cppunittest', 'target_install_cppunittest_a']) |
731 |
env.Alias('run_tests', ['install_all', 'target_install_cppunittest_a']) |
env.Alias('run_tests', ['install_all', 'target_install_cppunittest_a']) |
732 |
env.Alias('all_tests', ['install_all', 'target_install_cppunittest_a', 'run_tests', 'py_tests']) |
env.Alias('all_tests', ['install_all', 'target_install_cppunittest_a', 'run_tests', 'py_tests']) |
733 |
|
env.Alias('build_full',['install_all','build_tests','build_py_tests']) |
734 |
|
|
735 |
############ Targets to build the documentation ################ |
############ Targets to build the documentation ################ |
736 |
|
|
737 |
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'guide_pdf', 'guide_html']) |
env.Alias('docs', ['examples_tarfile', 'examples_zipfile', 'api_epydoc', 'api_doxygen', 'guide_pdf', 'guide_html']) |
738 |
|
|
739 |
|
if not IS_WINDOWS_PLATFORM: |
740 |
|
try: |
741 |
|
utest=open("utest.sh","w") |
742 |
|
build_platform=os.name #Sometimes Mac python says it is posix |
743 |
|
if (build_platform=='posix') and platform.system()=="Darwin": |
744 |
|
build_platform='darwin' |
745 |
|
utest.write(GroupTest.makeHeader(build_platform)) |
746 |
|
for tests in TestGroups: |
747 |
|
utest.write(tests.makeString()) |
748 |
|
utest.close() |
749 |
|
print "utest.sh written" |
750 |
|
except IOError: |
751 |
|
print "Error attempting to write unittests file." |
752 |
|
sys.exit(1) |
753 |
|
|