1 |
|
|
2 |
|
# Copyright 2006 by ACcESS MNRF |
3 |
|
# |
4 |
|
# http://www.access.edu.au |
5 |
|
# Primary Business: Queensland, Australia |
6 |
|
# Licensed under the Open Software License version 3.0 |
7 |
|
# http://www.opensource.org/licenses/osl-3.0.php |
8 |
|
# |
9 |
|
|
10 |
|
|
11 |
|
|
12 |
# this code should be called by all esys13 scons builder and testing scripts |
# this code should be called by all esys13 scons builder and testing scripts |
13 |
# it sets default values for relevant variables and overloads them with the |
# it sets default values for relevant variables and overloads them with the |
14 |
# standard gcc settings by importing gcc_options. If there is |
# standard gcc settings by importing gcc_options. If there is |
17 |
# this is the general set up for the esys scons system: |
# this is the general set up for the esys scons system: |
18 |
libinstall = None |
libinstall = None |
19 |
pyinstall = None |
pyinstall = None |
20 |
|
incinstall = None |
21 |
dodebug = 0 |
dodebug = 0 |
22 |
|
|
23 |
# locations of libs etc used by mkl |
# locations of libs etc used by mkl |
37 |
|
|
38 |
# locations of include files for python |
# locations of include files for python |
39 |
python_path = Dir('/usr/include') |
python_path = Dir('/usr/include') |
40 |
python_lib_path =Dir('/usr/lib') |
python_lib_path = Dir('/usr/lib') |
41 |
python_lib = Library('python2.3') |
python_lib = [ 'python2.3' ] |
42 |
|
|
43 |
|
# locations of PAPI |
44 |
|
papi_path = '' |
45 |
|
papi_lib_path = '' |
46 |
|
papi_libs = [] |
47 |
|
|
48 |
# locations of libraries for boost |
# locations of libraries for boost |
49 |
boost_path =Dir('/usr/include') |
boost_path = '/usr/include' |
50 |
boost_lib_path =Dir('/usr/lib') |
boost_lib_path = '/usr/lib' |
51 |
boost_lib = Library('boost_python') |
boost_lib = 'boost_python' |
52 |
|
|
53 |
|
# locations of doc building executables |
54 |
|
doxygen_path = '' |
55 |
|
epydoc_path = '' |
56 |
|
epydoc_pythonpath = '' |
57 |
|
|
58 |
# names of c and c++ compilers to use |
# names of c and c++ compilers to use |
59 |
cc = 'gcc' |
cc = 'gcc' |
92 |
options = None |
options = None |
93 |
if ARGUMENTS.get('libinstall',0): libinstall = ARGUMENTS.get('libinstall',0) |
if ARGUMENTS.get('libinstall',0): libinstall = ARGUMENTS.get('libinstall',0) |
94 |
if ARGUMENTS.get('pyinstall',0): pyinstall = ARGUMENTS.get('pyinstall',0) |
if ARGUMENTS.get('pyinstall',0): pyinstall = ARGUMENTS.get('pyinstall',0) |
95 |
|
if ARGUMENTS.get('incinstall',0): pyinstall = ARGUMENTS.get('incinstall',0) |
96 |
if ARGUMENTS.get('debug',0): dodebug = 1 |
if ARGUMENTS.get('debug',0): dodebug = 1 |
97 |
if ARGUMENTS.get('options',0): options = ARGUMENTS.get('options',0) |
if ARGUMENTS.get('options',0): options = ARGUMENTS.get('options',0) |
98 |
if ARGUMENTS.get('usegcc',0): usegcc = 1 |
if ARGUMENTS.get('usegcc',0): usegcc = 1 |
|
|
|
99 |
# |
# |
100 |
# try to import <hostname>_options |
# try to import <hostname>_options |
101 |
try: |
try: |
107 |
# try to import <hostname>_options |
# try to import <hostname>_options |
108 |
if usegcc==0: |
if usegcc==0: |
109 |
import socket |
import socket |
110 |
hostname = socket.gethostname() |
from string import ascii_letters,digits |
111 |
|
hostname="" |
112 |
|
for s in socket.gethostname().split('.')[0]: |
113 |
|
if s in ascii_letters+digits: |
114 |
|
hostname+=s |
115 |
|
else: |
116 |
|
hostname+="_" |
117 |
try: |
try: |
118 |
exec "from "+hostname+"_options import *" |
exec "from "+hostname+"_options import *" |
119 |
except ImportError: |
except ImportError: |
130 |
cxx_flags=cxx_flags_debug |
cxx_flags=cxx_flags_debug |
131 |
cc_flags=cc_flags_debug |
cc_flags=cc_flags_debug |
132 |
|
|
133 |
|
# |
134 |
|
# export configuration variables |
135 |
|
# |
136 |
Export(["esysroot"]) |
Export(["esysroot"]) |
137 |
Export(["libinstall"]) |
Export(["libinstall"]) |
138 |
|
Export(["incinstall"]) |
139 |
Export(["pyinstall"]) |
Export(["pyinstall"]) |