15 |
EnsureSConsVersion(0,96,91) |
EnsureSConsVersion(0,96,91) |
16 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
17 |
|
|
18 |
import sys, os, re, socket, platform |
import sys, os, re, socket, platform, stat |
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'), |
('forcelazy','for testing use only - set the default value for autolazy','leave_alone'), |
98 |
('mpi_run', 'mpirun name' , 'mpiexec -np 1'), |
('mpi_run', 'mpirun name' , 'mpiexec -np 1'), |
99 |
('mpi_lib_path', 'Path to MPI libs (needs to be added to the LD_LIBRARY_PATH)', usr_lib), |
('mpi_lib_path', 'Path to MPI libs (needs to be added to the LD_LIBRARY_PATH)', usr_lib), |
100 |
('mpi_libs', 'MPI libraries to link with (needs to be shared!)', ['mpich' , 'pthread', 'rt']), |
('mpi_libs', 'MPI libraries to link with (needs to be shared!)', ['mpich' , 'pthread', 'rt']), |
101 |
|
('mpi_flavour','Type of MPI execution environment','none'), |
102 |
# ParMETIS |
# ParMETIS |
103 |
BoolOption('useparmetis', 'Compile parallel version using ParMETIS', 'yes'), |
BoolOption('useparmetis', 'Compile parallel version using ParMETIS', 'yes'), |
104 |
('parmetis_path', 'Path to ParMETIS includes', '/usr/include'), |
('parmetis_path', 'Path to ParMETIS includes', '/usr/include'), |
190 |
#the long long warning occurs on the Mac |
#the long long warning occurs on the Mac |
191 |
cc_optim = "-O3" |
cc_optim = "-O3" |
192 |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
cc_debug = "-g -O0 -DDOASSERT -DDOPROF -DBOUNDS_CHECK" |
193 |
omp_optim = "" |
omp_optim = "-fopenmp" |
194 |
omp_debug = "" |
omp_debug = "-fopenmp" |
195 |
omp_libs = [] |
omp_libs = ['gomp'] |
196 |
pedantic = "-pedantic-errors -Wno-long-long" |
pedantic = "-pedantic-errors -Wno-long-long" |
197 |
fatalwarning = "-Werror" |
fatalwarning = "-Werror" |
198 |
sysheaderopt = "-isystem " |
sysheaderopt = "-isystem " |
297 |
|
|
298 |
# MS Windows |
# MS Windows |
299 |
if IS_WINDOWS_PLATFORM: |
if IS_WINDOWS_PLATFORM: |
300 |
env.PrependENVPath('PATH', [env['boost_lib_path']]) |
env.AppendENVPath('PATH', [env['boost_lib_path']]) |
301 |
env.PrependENVPath('PATH', [env['libinstall']]) |
env.AppendENVPath('PATH', [env['libinstall']]) |
302 |
if not env['share_esysUtils'] : |
if not env['share_esysUtils'] : |
303 |
env.Append(CPPDEFINES = ['ESYSUTILS_STATIC_LIB']) |
env.Append(CPPDEFINES = ['ESYSUTILS_STATIC_LIB']) |
304 |
if not env['share_paso'] : |
if not env['share_paso'] : |
305 |
env.Append(CPPDEFINES = ['PASO_STATIC_LIB']) |
env.Append(CPPDEFINES = ['PASO_STATIC_LIB']) |
306 |
|
|
307 |
if env['usenetcdf']: |
if env['usenetcdf']: |
308 |
env.PrependENVPath('PATH', [env['netCDF_lib_path']]) |
env.AppendENVPath('PATH', [env['netCDF_lib_path']]) |
309 |
|
|
310 |
env.Append(ARFLAGS = env['ar_flags']) |
env.Append(ARFLAGS = env['ar_flags']) |
311 |
|
|
334 |
|
|
335 |
# Test that the compiler is working |
# Test that the compiler is working |
336 |
if not conf.CheckFunc('printf'): |
if not conf.CheckFunc('printf'): |
337 |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
print "Cannot run C compiler '%s' (or libc is missing)" % (env['CC']) |
338 |
sys.exit(1) |
sys.exit(1) |
339 |
|
|
340 |
if conf.CheckFunc('gethostname'): |
if conf.CheckFunc('gethostname'): |
341 |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
conf.env.Append(CPPDEFINES = ['HAVE_GETHOSTNAME']) |
352 |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
conf.env.AppendUnique(LIBS = [env['python_libs']]) |
353 |
|
|
354 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['python_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['python_lib_path']) # The wrapper script needs to find these libs |
355 |
|
conf.env.PrependENVPath('PYTHONPATH', prefix) |
356 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
357 |
|
|
358 |
if not conf.CheckCHeader('Python.h'): |
if not conf.CheckCHeader('Python.h'): |
359 |
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']) |
360 |
sys.exit(1) |
sys.exit(1) |
361 |
if not conf.CheckFunc('Py_Main'): |
if not conf.CheckFunc('Py_Exit'): |
362 |
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']) |
363 |
sys.exit(1) |
sys.exit(1) |
364 |
|
|
365 |
############ boost (required) ################################## |
############ boost (required) ################################## |
366 |
|
|
367 |
if not sysheaderopt =="": |
if not sysheaderopt =="": |
368 |
conf.env.Append(CCFLAGS=sysheaderopt+env['boost_path']+'boost') |
# This is required because we can't -isystem /usr/system because it breaks std includes |
369 |
|
if os.path.normpath(env['boost_path']) =="/usr/include": |
370 |
|
conf.env.Append(CCFLAGS=sysheaderopt+os.path.join(env['boost_path'],'boost')) |
371 |
|
else: |
372 |
|
conf.env.Append(CCFLAGS=sysheaderopt+env['boost_path']) |
373 |
else: |
else: |
374 |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
conf.env.AppendUnique(CPPPATH = [env['boost_path']]) |
375 |
|
|
377 |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
conf.env.AppendUnique(LIBS = [env['boost_libs']]) |
378 |
|
|
379 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['boost_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['boost_lib_path']) # The wrapper script needs to find these libs |
380 |
|
#ensure that our path entries remain at the front |
381 |
|
conf.env.PrependENVPath('PYTHONPATH', prefix) |
382 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
383 |
|
|
384 |
if not conf.CheckCXXHeader('boost/python.hpp'): |
if not conf.CheckCXXHeader('boost/python.hpp'): |
385 |
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']) |
386 |
sys.exit(1) |
sys.exit(1) |
387 |
|
|
388 |
if not conf.CheckFunc('PyObject_SetAttr'): |
if not conf.CheckFunc('PyObject_SetAttr'): |
389 |
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']) |
390 |
sys.exit(1) |
sys.exit(1) |
414 |
conf.env.AppendUnique(LIBPATH = [env['netCDF_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['netCDF_lib_path']]) |
415 |
conf.env.AppendUnique(LIBS = [env['netCDF_libs']]) |
conf.env.AppendUnique(LIBS = [env['netCDF_libs']]) |
416 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['netCDF_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['netCDF_lib_path']) # The wrapper script needs to find these libs |
417 |
|
#ensure that our path entries remain at the front |
418 |
|
conf.env.PrependENVPath('PYTHONPATH', prefix) |
419 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
420 |
|
|
421 |
if env['usenetcdf'] and not conf.CheckCHeader('netcdf.h'): env['usenetcdf'] = 0 |
if env['usenetcdf'] and not conf.CheckCHeader('netcdf.h'): env['usenetcdf'] = 0 |
422 |
if env['usenetcdf'] and not conf.CheckFunc('nc_open'): env['usenetcdf'] = 0 |
if env['usenetcdf'] and not conf.CheckFunc('nc_open'): env['usenetcdf'] = 0 |
438 |
conf.env.AppendUnique(LIBPATH = [env['papi_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['papi_lib_path']]) |
439 |
conf.env.AppendUnique(LIBS = [env['papi_libs']]) |
conf.env.AppendUnique(LIBS = [env['papi_libs']]) |
440 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['papi_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['papi_lib_path']) # The wrapper script needs to find these libs |
441 |
|
#ensure that our path entries remain at the front |
442 |
|
conf.env.PrependENVPath('PYTHONPATH', prefix) |
443 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
444 |
|
|
445 |
if env['usepapi'] and not conf.CheckCHeader('papi.h'): env['usepapi'] = 0 |
if env['usepapi'] and not conf.CheckCHeader('papi.h'): env['usepapi'] = 0 |
446 |
if env['usepapi'] and not conf.CheckFunc('PAPI_start_counters'): env['usepapi'] = 0 |
if env['usepapi'] and not conf.CheckFunc('PAPI_start_counters'): env['usepapi'] = 0 |
462 |
conf.env.AppendUnique(LIBPATH = [env['mkl_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env['mkl_lib_path']]) |
463 |
conf.env.AppendUnique(LIBS = [env['mkl_libs']]) |
conf.env.AppendUnique(LIBS = [env['mkl_libs']]) |
464 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mkl_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mkl_lib_path']) # The wrapper script needs to find these libs |
465 |
|
#ensure that our path entries remain at the front |
466 |
|
conf.env.PrependENVPath('PYTHONPATH', prefix) |
467 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
468 |
|
|
469 |
if env['usemkl'] and not conf.CheckCHeader('mkl_solver.h'): env['usemkl'] = 0 |
if env['usemkl'] and not conf.CheckCHeader('mkl_solver.h'): env['usemkl'] = 0 |
470 |
if env['usemkl'] and not conf.CheckFunc('pardiso_'): env['usemkl'] = 0 |
if env['usemkl'] and not conf.CheckFunc('pardiso'): env['usemkl'] = 0 |
471 |
|
|
472 |
# Add MKL to environment env if it was found |
# Add MKL to environment env if it was found |
473 |
if env['usemkl']: |
if env['usemkl']: |
495 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['umf_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['umf_lib_path']) # The wrapper script needs to find these libs |
496 |
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 |
497 |
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 |
498 |
|
#ensure that our path entries remain at the front |
499 |
|
conf.env.PrependENVPath('PYTHONPATH', prefix) |
500 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
501 |
|
|
|
if env['useumfpack'] and not conf.CheckCHeader('umfpack.h'): env['useumfpack'] = 0 |
|
502 |
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 |
503 |
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 |
504 |
|
# if env['useumfpack'] and not conf.CheckFunc('daxpy'): env['useumfpack'] = 0 # this does not work on shake73? |
505 |
|
|
506 |
# Add UMFPACK to environment env if it was found |
# Add UMFPACK to environment env if it was found |
507 |
if env['useumfpack']: |
if env['useumfpack']: |
543 |
env.Append(CCFLAGS = env['cc_flags']) |
env.Append(CCFLAGS = env['cc_flags']) |
544 |
env.Append(LIBS = [env['omp_libs']]) |
env.Append(LIBS = [env['omp_libs']]) |
545 |
|
|
|
|
|
546 |
############ Add some custom builders ########################## |
############ Add some custom builders ########################## |
547 |
|
|
548 |
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) |
563 |
conf = Configure(clone_env(env_mpi)) |
conf = Configure(clone_env(env_mpi)) |
564 |
|
|
565 |
if env_mpi['usempi']: |
if env_mpi['usempi']: |
566 |
|
VALID_MPIs=[ "MPT", "OPENMPI", "MPICH", "OPENMPI", "INTELMPI" ] |
567 |
|
if not env_mpi['mpi_flavour'] in VALID_MPIs: |
568 |
|
raise ValueError,"MPI is enabled but mpi_flavour = %s is not a valid key from %s."%( env_mpi['mpi_flavour'],VALID_MPIs) |
569 |
conf.env.AppendUnique(CPPPATH = [env_mpi['mpi_path']]) |
conf.env.AppendUnique(CPPPATH = [env_mpi['mpi_path']]) |
570 |
conf.env.AppendUnique(LIBPATH = [env_mpi['mpi_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env_mpi['mpi_lib_path']]) |
571 |
conf.env.AppendUnique(LIBS = [env_mpi['mpi_libs']]) |
conf.env.AppendUnique(LIBS = [env_mpi['mpi_libs']]) |
572 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mpi_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['mpi_lib_path']) # The wrapper script needs to find these libs |
573 |
|
#ensure that our path entries remain at the front |
574 |
|
conf.env.PrependENVPath('PYTHONPATH', prefix) |
575 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
576 |
|
|
577 |
if env_mpi['usempi'] and not conf.CheckCHeader('mpi.h'): env_mpi['usempi'] = 0 |
if env_mpi['usempi'] and not conf.CheckCHeader('mpi.h'): env_mpi['usempi'] = 0 |
578 |
if env_mpi['usempi'] and not conf.CheckFunc('MPI_Init'): env_mpi['usempi'] = 0 |
# if env_mpi['usempi'] and not conf.CheckFunc('MPI_Init'): env_mpi['usempi'] = 0 |
579 |
|
|
580 |
# Add MPI to environment env_mpi if it was found |
# Add MPI to environment env_mpi if it was found |
581 |
if env_mpi['usempi']: |
if env_mpi['usempi']: |
598 |
conf.env.AppendUnique(LIBPATH = [env_mpi['parmetis_lib_path']]) |
conf.env.AppendUnique(LIBPATH = [env_mpi['parmetis_lib_path']]) |
599 |
conf.env.AppendUnique(LIBS = [env_mpi['parmetis_libs']]) |
conf.env.AppendUnique(LIBS = [env_mpi['parmetis_libs']]) |
600 |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['parmetis_lib_path']) # The wrapper script needs to find these libs |
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['parmetis_lib_path']) # The wrapper script needs to find these libs |
601 |
|
#ensure that our path entries remain at the front |
602 |
|
conf.env.PrependENVPath('PYTHONPATH', prefix) |
603 |
|
conf.env.PrependENVPath('LD_LIBRARY_PATH', env['libinstall']) |
604 |
|
|
605 |
if env_mpi['useparmetis'] and not conf.CheckCHeader('parmetis.h'): env_mpi['useparmetis'] = 0 |
if env_mpi['useparmetis'] and not conf.CheckCHeader('parmetis.h'): env_mpi['useparmetis'] = 0 |
606 |
if env_mpi['useparmetis'] and not conf.CheckFunc('ParMETIS_V3_PartGeomKway'): env_mpi['useparmetis'] = 0 |
if env_mpi['useparmetis'] and not conf.CheckFunc('ParMETIS_V3_PartGeomKway'): env_mpi['useparmetis'] = 0 |
641 |
else: print " Not using Silo" |
else: print " Not using Silo" |
642 |
if env['useopenmp']: print " Using OpenMP" |
if env['useopenmp']: print " Using OpenMP" |
643 |
else: print " Not using OpenMP" |
else: print " Not using OpenMP" |
644 |
if env['usempi']: print " Using MPI" |
if env['usempi']: print " Using MPI (flavour = %s)"%env['mpi_flavour'] |
645 |
else: print " Not using MPI" |
else: print " Not using MPI" |
646 |
if env['useparmetis']: print " Using ParMETIS" |
if env['useparmetis']: print " Using ParMETIS" |
647 |
else: print " Not using ParMETIS (requires MPI)" |
else: print " Not using ParMETIS (requires MPI)" |
656 |
|
|
657 |
############ Delete option-dependent files ##################### |
############ Delete option-dependent files ##################### |
658 |
|
|
659 |
Execute(Delete(env['libinstall'] + "/Compiled.with.debug")) |
Execute(Delete(os.path.join(env['libinstall'],"Compiled.with.debug"))) |
660 |
Execute(Delete(env['libinstall'] + "/Compiled.with.mpi")) |
Execute(Delete(os.path.join(env['libinstall'],"Compiled.with.mpi"))) |
661 |
Execute(Delete(env['libinstall'] + "/Compiled.with.openmp")) |
Execute(Delete(os.path.join(env['libinstall'],"Compiled.with.openmp"))) |
662 |
if not env['usempi']: Execute(Delete(env['libinstall'] + "/pythonMPI")) |
Execute(Delete(os.path.join(env['libinstall'],"pyversion"))) |
663 |
|
Execute(Delete(os.path.join(env['libinstall'],"buildvars"))) |
664 |
|
if not env['usempi']: Execute(Delete(os.path.join(env['libinstall'],"pythonMPI"))) |
665 |
|
|
666 |
|
|
667 |
############ Build the subdirectories ########################## |
############ Build the subdirectories ########################## |
699 |
remember_list = [] |
remember_list = [] |
700 |
|
|
701 |
if env['usedebug']: |
if env['usedebug']: |
702 |
remember_list += env.Command(env['libinstall'] + "/Compiled.with.debug", None, Touch('$TARGET')) |
remember_list += env.Command(os.path.join(env['libinstall'],"Compiled.with.debug"), None, Touch('$TARGET')) |
703 |
|
|
704 |
if env['usempi']: |
if env['usempi']: |
705 |
remember_list += env.Command(env['libinstall'] + "/Compiled.with.mpi", None, Touch('$TARGET')) |
remember_list += env.Command(os.path.join(env['libinstall'],"Compiled.with.mpi"), None, Touch('$TARGET')) |
706 |
|
|
707 |
if env['omp_optim'] != '': |
if env['useopenmp']: |
708 |
remember_list += env.Command(env['libinstall'] + "/Compiled.with.openmp", None, Touch('$TARGET')) |
remember_list += env.Command(os.path.join(env['libinstall'],"Compiled.with.openmp"), None, Touch('$TARGET')) |
709 |
|
|
710 |
env.Alias('remember_options', remember_list) |
env.Alias('remember_options', remember_list) |
711 |
|
|
712 |
|
|
713 |
|
############### Record python interpreter version ############## |
714 |
|
|
715 |
|
if not IS_WINDOWS_PLATFORM: |
716 |
|
versionstring="Python "+str(sys.version_info[0])+"."+str(sys.version_info[1])+"."+str(sys.version_info[2]) |
717 |
|
os.system("echo "+versionstring+" > "+os.path.join(env['libinstall'],"pyversion")) |
718 |
|
|
719 |
|
############## Populate the buildvars file ##################### |
720 |
|
|
721 |
|
buildvars=open(os.path.join(env['libinstall'],'buildvars'),'w') |
722 |
|
buildvars.write('python='+str(sys.version_info[0])+"."+str(sys.version_info[1])+"."+str(sys.version_info[2])+'\n') |
723 |
|
|
724 |
|
# Find the boost version by extracting it from version.hpp |
725 |
|
boosthpp=open(os.path.join(env['boost_path'],'boost','version.hpp')) |
726 |
|
boostversion='unknown' |
727 |
|
try: |
728 |
|
for line in boosthpp: |
729 |
|
ver=re.match(r'#define BOOST_VERSION (\d+)',line) |
730 |
|
if ver: |
731 |
|
boostversion=ver.group(1) |
732 |
|
except StopIteration: |
733 |
|
pass |
734 |
|
buildvars.write("boost="+boostversion+"\n") |
735 |
|
buildvars.write("svn_revision="+str(global_revision)+"\n") |
736 |
|
out="usedebug=" |
737 |
|
if env['usedebug']: |
738 |
|
out+="y" |
739 |
|
else: |
740 |
|
out+="n" |
741 |
|
out+="\nusempi=" |
742 |
|
if env['usempi']: |
743 |
|
out+="y" |
744 |
|
else: |
745 |
|
out+="n" |
746 |
|
out+="\nuseopenmp=" |
747 |
|
if env['useopenmp']: |
748 |
|
out+="y" |
749 |
|
else: |
750 |
|
out+="n" |
751 |
|
buildvars.write(out+"\n") |
752 |
|
buildvars.write("mpi_flavour="+env['mpi_flavour']+'\n') |
753 |
|
|
754 |
|
buildvars.close() |
755 |
|
|
756 |
|
|
757 |
############ Targets to build and install libraries ############ |
############ Targets to build and install libraries ############ |
758 |
|
|
759 |
target_init = env.Command(env['pyinstall']+'/__init__.py', None, Touch('$TARGET')) |
target_init = env.Command(env['pyinstall']+'/__init__.py', None, Touch('$TARGET')) |
779 |
build_all_list += ['build_escript'] |
build_all_list += ['build_escript'] |
780 |
build_all_list += ['build_finley'] |
build_all_list += ['build_finley'] |
781 |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
if env['usempi']: build_all_list += ['target_pythonMPI_exe'] |
782 |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: build_all_list += ['target_escript_wrapper'] |
783 |
if env['usesilo']: build_all_list += ['target_escript2silo'] |
if env['usesilo']: build_all_list += ['target_escript2silo'] |
784 |
env.Alias('build_all', build_all_list) |
env.Alias('build_all', build_all_list) |
785 |
|
|
793 |
install_all_list += ['target_install_modellib_py'] |
install_all_list += ['target_install_modellib_py'] |
794 |
install_all_list += ['target_install_pycad_py'] |
install_all_list += ['target_install_pycad_py'] |
795 |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
if env['usempi']: install_all_list += ['target_install_pythonMPI_exe'] |
796 |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_finley_wrapper'] |
if not IS_WINDOWS_PLATFORM: install_all_list += ['target_install_escript_wrapper'] |
797 |
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
if env['usesilo']: install_all_list += ['target_install_escript2silo'] |
798 |
install_all_list += ['remember_options'] |
install_all_list += ['remember_options'] |
799 |
env.Alias('install_all', install_all_list) |
env.Alias('install_all', install_all_list) |
807 |
env.Alias('install_cppunittest', ['build_cppunittest', 'target_install_cppunittest_a']) |
env.Alias('install_cppunittest', ['build_cppunittest', 'target_install_cppunittest_a']) |
808 |
env.Alias('run_tests', ['install_all', 'target_install_cppunittest_a']) |
env.Alias('run_tests', ['install_all', 'target_install_cppunittest_a']) |
809 |
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']) |
810 |
|
env.Alias('build_full',['install_all','build_tests','build_py_tests']) |
811 |
|
|
812 |
############ Targets to build the documentation ################ |
############ Targets to build the documentation ################ |
813 |
|
|
814 |
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','install_pdf']) |
815 |
|
|
816 |
if not IS_WINDOWS_PLATFORM: |
if not IS_WINDOWS_PLATFORM: |
817 |
try: |
try: |
823 |
for tests in TestGroups: |
for tests in TestGroups: |
824 |
utest.write(tests.makeString()) |
utest.write(tests.makeString()) |
825 |
utest.close() |
utest.close() |
826 |
|
os.chmod("utest.sh",stat.S_IRWXU|stat.S_IRGRP|stat.S_IXGRP|stat.S_IROTH|stat.S_IXOTH) |
827 |
print "utest.sh written" |
print "utest.sh written" |
828 |
except IOError: |
except IOError: |
829 |
print "Error attempting to write unittests file." |
print "Error attempting to write unittests file." |