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 |
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' |
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 |
|
|
|
88 |
# |
# |
89 |
# try to import <hostname>_options |
# try to import <hostname>_options |
90 |
try: |
try: |
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() |
from string import ascii_letters,digits |
100 |
|
hostname="" |
101 |
|
for s in socket.gethostname().split('.')[0]: |
102 |
|
if s in ascii_letters+digits: |
103 |
|
hostname+=s |
104 |
|
else: |
105 |
|
hostname+="_" |
106 |
try: |
try: |
107 |
exec "from "+hostname+"_options import *" |
exec "from "+hostname+"_options import *" |
108 |
except ImportError: |
except ImportError: |
119 |
cxx_flags=cxx_flags_debug |
cxx_flags=cxx_flags_debug |
120 |
cc_flags=cc_flags_debug |
cc_flags=cc_flags_debug |
121 |
|
|
122 |
|
# |
123 |
|
# export configuration variables |
124 |
|
# |
125 |
Export(["esysroot"]) |
Export(["esysroot"]) |
126 |
Export(["libinstall"]) |
Export(["libinstall"]) |
127 |
|
Export(["incinstall"]) |
128 |
Export(["pyinstall"]) |
Export(["pyinstall"]) |