1 |
|
# this code should be called by all esys13 scons builder and testing scripts |
2 |
|
# it sets default values for relevant variables and overloads them with the |
3 |
|
# standard gcc settings by importing gcc_options. If there is |
4 |
|
# a <hostname>_options file it is imported to set platform specific settings |
5 |
|
|
6 |
# this is the general set up for the esys scons system: |
# this is the general set up for the esys scons system: |
7 |
libinstall = None |
libinstall = None |
8 |
pyinstall = None |
pyinstall = None |
9 |
|
incinstall = None |
10 |
dodebug = 0 |
dodebug = 0 |
11 |
|
|
12 |
# locations of libs etc used by mkl |
# locations of libs etc used by mkl |
19 |
scsl_lib_path = '' |
scsl_lib_path = '' |
20 |
scsl_libs = [] |
scsl_libs = [] |
21 |
|
|
|
|
|
22 |
# locations of libs etc used by UMFPACK |
# locations of libs etc used by UMFPACK |
23 |
umfpack_path = '' |
umfpack_path = '' |
24 |
umfpack_lib_path = '' |
umfpack_lib_path = '' |
25 |
umfpack_libs = [] |
umfpack_libs = [] |
26 |
|
|
|
|
|
27 |
# locations of include files for python |
# locations of include files for python |
28 |
python_path = Dir('/usr/include') |
python_path = Dir('/usr/include') |
29 |
python_lib_path =Dir('/usr/lib') |
python_lib_path = Dir('/usr/lib') |
30 |
python_lib = Library('python2.3') |
python_lib = [ 'python2.3' ] |
31 |
|
|
32 |
|
# locations of PAPI |
33 |
|
papi_path = '' |
34 |
|
papi_lib_path = '' |
35 |
|
papi_libs = [] |
36 |
|
|
37 |
# locations of libraries for boost |
# locations of libraries for boost |
38 |
boost_path =Dir('/usr/include') |
boost_path = '/usr/include' |
39 |
boost_lib_path =Dir('/usr/lib') |
boost_lib_path = '/usr/lib' |
40 |
boost_lib = Library('boost_python') |
boost_lib = 'boost_python' |
41 |
|
|
42 |
|
# locations of doc building executables |
43 |
|
doxygen_path = '' |
44 |
|
epydoc_path = '' |
45 |
|
epydoc_pythonpath = '' |
46 |
|
|
47 |
# names of c and c++ compilers to use |
# names of c and c++ compilers to use |
48 |
cc = 'gcc' |
cc = 'gcc' |
63 |
sys_libs = [] |
sys_libs = [] |
64 |
|
|
65 |
#==== end of setting options =========================================== |
#==== end of setting options =========================================== |
66 |
|
|
67 |
import sys |
import sys |
68 |
# set esys root |
|
69 |
|
# set esysroot |
70 |
options_dir = Dir(esysroot + '/scons') |
options_dir = Dir(esysroot + '/scons') |
71 |
if sys.path.count(str(options_dir))==0: sys.path.append(str(options_dir)) |
if sys.path.count(str(options_dir))==0: sys.path.append(str(options_dir)) |
72 |
|
|
73 |
# |
# |
74 |
# ensure correct versions of python and scons |
# ensure correct versions of python and scons |
75 |
EnsurePythonVersion(2,3) |
EnsurePythonVersion(2,3) |
76 |
EnsureSConsVersion(0,96) |
EnsureSConsVersion(0,96) |
77 |
# |
|
|
# import configuration variables passed in from |
|
|
# calling SConscript (if any) |
|
78 |
# |
# |
79 |
# retreive command-line arguments if any and overwrite settings in <hostname>_options |
# retreive command-line arguments if any and overwrite settings in <hostname>_options |
80 |
usegcc = 0 |
usegcc = 0 |
81 |
options = None |
options = None |
82 |
if ARGUMENTS.get('libinstall',0): libinstall = ARGUMENTS.get('libinstall',0) |
if ARGUMENTS.get('libinstall',0): libinstall = ARGUMENTS.get('libinstall',0) |
83 |
if ARGUMENTS.get('pyinstall',0): pyinstall = ARGUMENTS.get('pyinstall',0) |
if ARGUMENTS.get('pyinstall',0): pyinstall = ARGUMENTS.get('pyinstall',0) |
84 |
|
if ARGUMENTS.get('incinstall',0): pyinstall = ARGUMENTS.get('incinstall',0) |
85 |
if ARGUMENTS.get('debug',0): dodebug = 1 |
if ARGUMENTS.get('debug',0): dodebug = 1 |
86 |
if ARGUMENTS.get('options',0): options = ARGUMENTS.get('options',0) |
if ARGUMENTS.get('options',0): options = ARGUMENTS.get('options',0) |
87 |
if ARGUMENTS.get('usegcc',0): usegcc = 1 |
if ARGUMENTS.get('usegcc',0): usegcc = 1 |
91 |
exec "from gcc_options import *" |
exec "from gcc_options import *" |
92 |
except ImportError: |
except ImportError: |
93 |
pass |
pass |
94 |
|
|
95 |
# |
# |
96 |
# try to import <hostname>_options |
# try to import <hostname>_options |
97 |
if usegcc==0: |
if usegcc==0: |
98 |
import socket |
import socket |
99 |
hostname = socket.gethostname() |
hostname = socket.gethostname().split('.')[0] |
100 |
try: |
try: |
101 |
exec "from "+hostname+"_options import *" |
exec "from "+hostname+"_options import *" |
102 |
except ImportError: |
except ImportError: |
103 |
pass |
pass |
104 |
|
|
105 |
|
# |
106 |
# import additional options: |
# import additional options: |
107 |
if options!=None: |
if options!=None: |
108 |
exec "from " + options + " import *" |
exec "from " + options + " import *" |
109 |
|
|
110 |
# |
# |
111 |
# use debug options: |
# use debug options: |
112 |
if dodebug==1: |
if dodebug==1: |
113 |
cxx_flags=cxx_flags_debug |
cxx_flags=cxx_flags_debug |
114 |
c_flags=c_flags_debug |
cc_flags=cc_flags_debug |
115 |
|
|
116 |
|
# |
117 |
|
# export configuration variables |
118 |
# |
# |
|
# export some stuff |
|
119 |
Export(["esysroot"]) |
Export(["esysroot"]) |
120 |
|
Export(["libinstall"]) |
121 |
|
Export(["incinstall"]) |
122 |
|
Export(["pyinstall"]) |